Change 'source' in config to 'sources'

This commit is contained in:
Joakim Holm 2023-05-03 13:55:04 +02:00
parent 98306c0351
commit 7d63f1707a

View File

@ -34,7 +34,7 @@ def load_config() -> Config:
config_dict = {}
sources = {}
if "source" in config_dict:
for key, values in config_dict["source"].items():
for key, values in config_dict["sources"].items():
sources[key] = SourceConfig (
username = values.get("username"),
password = values.get("password"),