Skip to content
This repository has been archived by the owner on Aug 20, 2021. It is now read-only.

Commit

Permalink
formatting isn't in a round() call
Browse files Browse the repository at this point in the history
  • Loading branch information
0/0 committed Jan 26, 2021
1 parent c199038 commit ed598bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/future_simulations.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def agree(c):
e.add_field(name=_("Total Cases"), value=format(ret_data["total_cases"], ","))
e.add_field(name=_("Total Deaths"), value=format(ret_data["total_deaths"], ","))
await msg.edit(embed=e, content=_("Took {0} seconds ({1}ns) to run.",
format(round(tt/1000000000), ","), format(round(tt, ","))))
format(round(tt/1000000000, 2), ","), format(tt, ",")))


setup = FutureSimulationsCog.setup

0 comments on commit ed598bf

Please sign in to comment.