From 2ab9e2d417c2704860ba695853b3bb182fd93b73 Mon Sep 17 00:00:00 2001 From: elliot Date: Sat, 25 Sep 2021 12:02:43 +0200 Subject: [PATCH] Convert comment to doc string --- bot.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/bot.py b/bot.py index a962fc5..b123ca0 100644 --- a/bot.py +++ b/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',