Use f-strings in more places that were missed.

This commit is contained in:
Rapptz
2021-04-08 06:02:47 -04:00
parent c3e0b6e123
commit 99fc950510
34 changed files with 220 additions and 143 deletions

View File

@ -128,7 +128,7 @@ bot = commands.Bot(command_prefix=commands.when_mentioned_or("!"),
@bot.event
async def on_ready():
print('Logged in as {0} ({0.id})'.format(bot.user))
print(f'Logged in as {bot.user} ({bot.user.id})')
print('------')
bot.add_cog(Music(bot))