Skip to content

Commit 1623f0e

Browse files
committed
runner - fix cli runtime display
1 parent ec63290 commit 1623f0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/python/aoc/runner/listener.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ def _format_time(self, time: int, timeout: float) -> str:
263263
if t < 0.001:
264264
runtime = colored(f"{t * 1000:7.3f}ms", color)
265265
else:
266-
runtime = colored("{t:8.4f}s", color)
266+
runtime = colored(f"{t:8.4f}s", color)
267267
return cast("str", runtime)
268268

269269

0 commit comments

Comments
 (0)