Browse Source

Make on_ready examples consistent

pull/7069/merge
pikaninja 4 years ago
committed by GitHub
parent
commit
caa9512a8a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      examples/basic_bot.py
  2. 4
      examples/basic_voice.py

4
examples/basic_bot.py

@ -16,9 +16,7 @@ bot = commands.Bot(command_prefix='?', description=description, intents=intents)
@bot.event
async def on_ready():
print('Logged in as')
print(bot.user.name)
print(bot.user.id)
print(f'Logged in as {bot.user} (ID: {bot.user.id})')
print('------')
@bot.command()

4
examples/basic_voice.py

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

Loading…
Cancel
Save