We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94fcf0e commit 472c051Copy full SHA for 472c051
examples/basic_bot/main.py
@@ -85,7 +85,7 @@ async def choice(self, ctx: commands.Context, *choices: str) -> None:
85
86
!choice <choice_1> <choice_2> <choice_3> ...
87
"""
88
- await ctx.reply(f"You provided {len(choices)}: I chose {random.choice(choices)}")
+ await ctx.reply(f"You provided {len(choices)} choices, I choose: {random.choice(choices)}")
89
90
@commands.command(aliases=["thanks", "thank"])
91
async def give(self, ctx: commands.Context, user: twitchio.User, amount: int, *, message: str | None = None) -> None:
0 commit comments