We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07d3be6 commit 9754d0dCopy full SHA for 9754d0d
compilesketches/compilesketches.py
@@ -916,9 +916,9 @@ class CompilationResult:
916
time_summary = ""
917
if diff_time > 60:
918
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"
+ time_summary += f"{int(diff_time / 360)}h "
+ time_summary += f"{int(diff_time / 60) % 60}m "
+ time_summary += f"{int(diff_time) % 60}s"
922
print("Compilation time elapsed", time_summary)
923
924
return CompilationResult()
0 commit comments