Removed example imports
This commit is contained in:
parent
c1edf06dee
commit
a24cdfd72a
1 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||||
|
|
Reference in a new issue