Browse Source

Convert comment to doc string

pull/1/head
elliot 3 years ago
parent
commit
2ab9e2d417
  1. 12
      bot.py

12
bot.py

@ -13,11 +13,13 @@ from decouple import config
bot = commands.Bot(command_prefix=".", intents=discord.Intents.default(),
case_insensitive=True)
# To add your token create a .env file in the top directory and add the following contents:
# ````
# BOT_TOKEN={Paste your token here}
# ````
# Remember to remove the comment ^^
"""
To add your token create a .env file in the top directory and add the following contents:
BOT_TOKEN={Paste your token here}
"""
token = config("BOT_TOKEN")
logging.basicConfig(filename='console.log',

Loading…
Cancel
Save