[PR] #177 from BKasin/config

This commit is contained in:
Azalea 2023-09-06 23:19:27 -04:00 committed by GitHub
commit ace0245097
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,7 @@ def check_config(path) -> Config:
"""
if path.is_file():
try:
return Config.from_dict(json.loads(CONFIG_PATH.read_text('utf-8')))
return Config.from_dict(json.loads(path.read_text('utf-8')))
except KeyError:
return create_config()