1
Fork 0

Removed example imports

This commit is contained in:
Jake Howard 2015-12-02 22:08:30 +00:00
parent c1edf06dee
commit a24cdfd72a
1 changed files with 3 additions and 3 deletions

View File

@ -1,10 +1,10 @@
import os
from yaml import load, dump
from yaml import load
try:
from yaml import CLoader as Loader, CDumper as Dumper
from yaml import CLoader as Loader
except ImportError:
from yaml import Loader, Dumper
from yaml import Loader
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
USER_CONFIG_DIR = "~/.dfa.yml"