use os.path.join for path

This commit is contained in:
shukari committed 2025-08-19 11:23:22 +02:00
1 parent 52eb112b95
commit a63f3f6e94
1 file changed
+2 -1
+2 -1
View File
@@ -2,6 +2,7 @@
import argparse
import logging
import os
from pathlib import Path
from typing import cast, List
@@ -191,7 +192,7 @@ def main():
parser = create_argparser()
args = parser.parse_args()
if not args.slog:
args.slog = str(Path(root_dir(), "latest"))
args.slog = os.path.join(root_dir(), "latest")
app = create_dash(slog_path=args.slog)
port = 8051