Skip to content

Commit 18d9d80

Browse files
committed
Cleanup
1 parent 5ddad40 commit 18d9d80

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tesla_dashcam/tesla_dashcam.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -3024,14 +3024,16 @@ def main() -> None:
30243024
font_file = DEFAULT_FONT.get(sys.platform, None)
30253025
if font_file is None:
30263026
print(
3027-
f"Unable to get a font file for platform {sys.platform}. Please provide valid font file using --font or disable timestamp using --no-timestamp."
3027+
f"Unable to get a font file for platform {sys.platform}. Please provide valid font file using "
3028+
f"--font or disable timestamp using --no-timestamp."
30283029
)
30293030
return
30303031

30313032
temp_font_file = f"c:\{font_file}" if sys.platform == "win32" else font_file
30323033
if not os.path.isfile(temp_font_file):
30333034
print(
3034-
f"Default font file {font_file} does not exist, please provide a font file using --font or disable timestamp using --no-timestamp"
3035+
f"Default font file {font_file} does not exist, please provide a font file using --font or "
3036+
f"disable timestamp using --no-timestamp"
30353037
)
30363038
return
30373039

0 commit comments

Comments
 (0)