style: 🎨 Added UV and Ruff linting
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user