Browse Source
Update joined command in basic_bot to use f-strings
pull/6677/head
N-i-c-k-007
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
examples/basic_bot.py
|
|
@ -52,7 +52,7 @@ async def repeat(ctx, times: int, content='repeating...'): |
|
|
|
@bot.command() |
|
|
|
async def joined(ctx, member: discord.Member): |
|
|
|
"""Says when a member joined.""" |
|
|
|
await ctx.send('{0.name} joined in {0.joined_at}'.format(member)) |
|
|
|
await ctx.send(f'{member.name} joined in {member.joined_at}') |
|
|
|
|
|
|
|
@bot.group() |
|
|
|
async def cool(ctx): |
|
|
|