style: 🎨 Added UV and Ruff linting

This commit is contained in:
Jake Pullen
2025-05-30 11:43:47 +01:00
parent cb5c03ab74
commit 5da9ba4b0b
11 changed files with 618 additions and 56 deletions
+1 -2
View File
@@ -7,7 +7,6 @@ import atexit
import logging.config
import config.exit_codes as ec
from pipeline.pipeline_main import pipeline_main
from visuals.dash_app import app
def set_up_logging():
@@ -32,7 +31,7 @@ def load_config():
except FileNotFoundError:
logging.error('config.yaml file not found')
sys.exit(ec.MISSING_CONFIG_FILE)
except yaml.YAMLError as e:
except yaml.YAMLError:
# Attempt to print a more informative error message
try:
parsed_yaml = yaml.safe_load_all(file)