From c3b74ced85267e8695d8a5de4f87287b1d305677 Mon Sep 17 00:00:00 2001 From: Egor Svitin Date: Tue, 21 Feb 2023 10:26:44 +0300 Subject: [PATCH] add debug info --- configs/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/config.py b/configs/config.py index 73314c3..afc0183 100644 --- a/configs/config.py +++ b/configs/config.py @@ -51,7 +51,7 @@ class AppConfig: new_config = {"sources": {}} for source in r.json(): new_config["sources"][source["source_name"]] = source - + print(dir(new_config)) with open("./configs/sources.json", "w") as outfile: outfile.write(json.dumps(new_config))