Skip to content

Commit 472c051

Browse files
committed
Fix some typo
1 parent 94fcf0e commit 472c051

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/basic_bot/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ async def choice(self, ctx: commands.Context, *choices: str) -> None:
8585
8686
!choice <choice_1> <choice_2> <choice_3> ...
8787
"""
88-
await ctx.reply(f"You provided {len(choices)}: I chose {random.choice(choices)}")
88+
await ctx.reply(f"You provided {len(choices)} choices, I choose: {random.choice(choices)}")
8989

9090
@commands.command(aliases=["thanks", "thank"])
9191
async def give(self, ctx: commands.Context, user: twitchio.User, amount: int, *, message: str | None = None) -> None:

0 commit comments

Comments
 (0)