more paths to os.path.join

This commit is contained in:
shukari
2025-08-19 13:38:59 +02:00
parent a63f3f6e94
commit e330afc899
2 changed files with 6 additions and 5 deletions

View File

@@ -145,8 +145,8 @@ def create_dash(slog_path: str) -> Dash:
"""
app = Dash(external_stylesheets=[dbc.themes.BOOTSTRAP])
dpwr = read_pandas(f"{slog_path}/power.feather")
dslog = read_pandas(f"{slog_path}/slog.feather")
dpwr = read_pandas(os.path.join(slog_path, "power.feather"))
dslog = read_pandas(os.path.join(slog_path, "slog.feather"))
pmon_raises = get_pmon_raises(dslog)