Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
EncryptEx committed Jul 8, 2024
1 parent be1960c commit f997fa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {}
Expand Down Expand Up @@ -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()
]),
Expand Down

0 comments on commit f997fa4

Please sign in to comment.