From f997fa4a3568927eebf2c0296279fa268b836bd8 Mon Sep 17 00:00:00 2001 From: EncryptEx Date: Mon, 8 Jul 2024 12:15:42 +0200 Subject: [PATCH] fix: typo --- bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index 27186a2..53c5a6b 100644 --- a/bot.py +++ b/bot.py @@ -1631,7 +1631,7 @@ async def settings(ctx, module: str = None, value: str = None): @bot.slash_command(guild_only=True, guild_ids=[int(SECURITY_GUILD)]) -async def metrics(ctx, sample: int = 5): +async def metrics(ctx, sample: int = 10): if str(ctx.author.id) == str(OWNER): metricList = await GetMetrics() commandDict = {} @@ -1669,7 +1669,7 @@ async def metrics(ctx, sample: int = 5): embed = Embed( title="Lifetime Metrics (since 25-08-23)", - description="The following command have been used:" + " ".join([ + description="The following command have been used:" + "\n".join([ cmd + ": " + str(times) + " times" for cmd, times in commandDict.items() ]),