More ruff linter fixes

This commit is contained in:
Ian Renton
2026-08-15 08:43:19 +01:00
parent dd89ff4af7
commit a6e54f524d
43 changed files with 99 additions and 153 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
import importlib
import logging
import os
import sys
import yaml
@@ -11,7 +12,7 @@ if not os.path.isfile("config.yml"):
logger.error(
"Your config file is missing. Ensure you have copied config-example.yml to config.yml and updated it according to your needs."
)
exit()
sys.exit()
# Load config
with open("config.yml") as f: