Add if __name__ == "__main__"

This commit is contained in:
ekzyis 2021-09-24 22:03:03 +02:00
parent bf82306cf0
commit 406556e8cf
1 changed files with 12 additions and 12 deletions

View File

@ -82,19 +82,19 @@ class Music(commands.Cog):
ctx.voice_client.stop()
bot = commands.Bot(command_prefix=commands.when_mentioned_or("!"), description='Relatively simple music bot example')
if __name__ == "__main__":
bot = commands.Bot(command_prefix=commands.when_mentioned_or("!"), description='Relatively simple music bot example')
@bot.event
async def on_ready():
print(f"Logged in as {bot.user} ({bot.user.id})")
print('------')
@bot.event
async def on_ready():
print(f"Logged in as {bot.user} ({bot.user.id})")
print('------')
bot.add_cog(Music(bot))
bot.add_cog(Music(bot))
token = os.environ.get("BOT_TOKEN", None)
if not token:
print("No token fouund in BOT_TOKEN")
sys.exit(1)
token = os.environ.get("BOT_TOKEN", None)
if not token:
print("No token fouund in BOT_TOKEN")
sys.exit(1)
bot.run(token)
bot.run(token)