fix: look for config.json, not parent dir in sanity check

This commit is contained in:
Viren070
2025-02-18 23:41:01 +00:00
committed by GitHub
parent 65ebcb481c
commit f1a7053c31
+1 -1
View File
@@ -165,7 +165,7 @@ async def sanity_check():
continue
logger.info("Config | Checking config...")
config_path = os.path.join(os.path.dirname(__file__), "data")
config_path = os.path.join(os.path.dirname(__file__), "data", "config.json")
with open(config_path, "r") as f:
example_config = json.load(f)