From 42367b05146f689edee67cdacb9ecb2f4bfca7b5 Mon Sep 17 00:00:00 2001 From: nex Date: Tue, 30 May 2023 19:56:39 +0100 Subject: [PATCH] Fix formatting --- cogs/other.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/other.py b/cogs/other.py index c92a612..9ef30a0 100644 --- a/cogs/other.py +++ b/cogs/other.py @@ -1449,7 +1449,7 @@ class OtherCog(commands.Cog): timings["Respond (File)"] = _t.total if timings: - text = "Timings:\n" + "\n".join("%s: %s" % (k.title(), v) for k, v in timings.items()) + text = "Timings:\n" + "\n".join("{}: {:.2f}s".format(k.title(), v) for k, v in timings.items()) await ctx.edit( content=text, )