1

Removed example imports

This commit is contained in:
Jake Howard 2015-12-02 22:08:30 +00:00
parent c1edf06dee
commit a24cdfd72a

View File

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