Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gibberish_detector/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
CONFIG_PATH = "config.yml"

with open(os.path.join(__location__, CONFIG_PATH), 'r') as ymlfile:
cfg = yaml.load(ymlfile)
cfg = yaml.safe_load(ymlfile)
# Load the yaml content into this module global variables
globals().update(cfg)