refactor: rename setup_config_and_logging to setup_config and update references

This commit is contained in:
2025-08-06 22:50:04 +02:00
parent 9338d6eab8
commit 104d7e1146
6 changed files with 39 additions and 73 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
#!.venv/bin/python3
import streamlit as st
from core.config import setup_config_and_logging
from core.config import setup_config
from core.utils.data_loader import DataLoader
from interface.configuration import Configuration
from interface.dashboard import Dashboard
@@ -26,7 +26,7 @@ st.set_page_config(
@st.cache_data
def load_config():
"""Load application configuration with unified setup"""
return setup_config_and_logging(env="development")
return setup_config(env="development")
class StreamlitApp: