Skip to content

Commit b2437b1

Browse files
committed
number formatting fix
1 parent d52a723 commit b2437b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/discord-cluster-manager/report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def generate_report(result: FullResult) -> RunResultReport: # noqa: C901
339339
message = "# Success!\n"
340340
message += "Command "
341341
message += f"```bash\n{_limit_length(run.command, 1000)}```\n"
342-
message += f"ran successfully in {run.duration:.2} seconds.\n"
342+
message += f"ran successfully in {run.duration:.2f} seconds.\n"
343343
report.add_text(message)
344344

345345
if len(runs) == 1:

0 commit comments

Comments
 (0)