Skip to content

Commit a63f3f6

Browse files
committed
use os.path.join for path
1 parent 52eb112 commit a63f3f6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

meshtastic/analysis/__main__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import argparse
44
import logging
5+
import os
56
from pathlib import Path
67
from typing import cast, List
78

@@ -191,7 +192,7 @@ def main():
191192
parser = create_argparser()
192193
args = parser.parse_args()
193194
if not args.slog:
194-
args.slog = str(Path(root_dir(), "latest"))
195+
args.slog = os.path.join(root_dir(), "latest")
195196

196197
app = create_dash(slog_path=args.slog)
197198
port = 8051

0 commit comments

Comments
 (0)