diff options
| -rw-r--r-- | commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands.py b/commands.py index 4811b4a..9c01e3d 100644 --- a/commands.py +++ b/commands.py @@ -88,7 +88,7 @@ async def stats_handler(message: Message): "👀топ режимов вызова:", *(f"- `{c}`: {n}" for c, n in calls.most_common()), "📝топ 10 промптов:", - *(f"- `{c}`: {n}" for c, n in top_prompts.most_common()), + *(f"- `{c}`: {n}" for c, n in top_prompts), ] await message.reply("\n".join(text)) |