Skip to content

Commit 9754d0d

Browse files
committed
remove whitespace in time output
1 parent 07d3be6 commit 9754d0d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

compilesketches/compilesketches.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -916,9 +916,9 @@ class CompilationResult:
916916
time_summary = ""
917917
if diff_time > 60:
918918
if diff_time > 360:
919-
time_summary += f"{int(diff_time / 360)} h "
920-
time_summary += f"{int(diff_time / 60) % 60} m "
921-
time_summary += f"{int(diff_time) % 60} s"
919+
time_summary += f"{int(diff_time / 360)}h "
920+
time_summary += f"{int(diff_time / 60) % 60}m "
921+
time_summary += f"{int(diff_time) % 60}s"
922922
print("Compilation time elapsed", time_summary)
923923

924924
return CompilationResult()

0 commit comments

Comments
 (0)