fix linting

This commit is contained in:
Robert Kaussow 2022-03-06 13:55:58 +01:00
parent 5e435fa2d2
commit 2faf0d2989
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0

View File

@ -211,7 +211,7 @@ class Config():
with open(config, "r", encoding="utf8") as stream:
s = stream.read()
try:
file_dict = ruamel.yaml.YAML(typ='safe', pure=True).load(s)
file_dict = ruamel.yaml.YAML(typ="safe", pure=True).load(s)
except (
ruamel.yaml.composer.ComposerError, ruamel.yaml.scanner.ScannerError
) as e: