Skip to content

Commit f997fa4

Browse files
committed
fix: typo
1 parent be1960c commit f997fa4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bot.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1631,7 +1631,7 @@ async def settings(ctx, module: str = None, value: str = None):
16311631

16321632

16331633
@bot.slash_command(guild_only=True, guild_ids=[int(SECURITY_GUILD)])
1634-
async def metrics(ctx, sample: int = 5):
1634+
async def metrics(ctx, sample: int = 10):
16351635
if str(ctx.author.id) == str(OWNER):
16361636
metricList = await GetMetrics()
16371637
commandDict = {}
@@ -1669,7 +1669,7 @@ async def metrics(ctx, sample: int = 5):
16691669

16701670
embed = Embed(
16711671
title="Lifetime Metrics (since 25-08-23)",
1672-
description="The following command have been used:" + " ".join([
1672+
description="The following command have been used:" + "\n".join([
16731673
cmd + ": " + str(times) + " times"
16741674
for cmd, times in commandDict.items()
16751675
]),

0 commit comments

Comments
 (0)