We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 033a780 commit be556ecCopy full SHA for be556ec
files/.gitignore
@@ -4,3 +4,5 @@ test_token
4
permissions
5
preferences
6
results
7
+
8
miniBot.py
@@ -602,6 +602,7 @@ async def on_ready():
602
await asyncio.sleep(10)
603
bot.read_in_info()
604
await daily_scheduler()
605
606
# Event handler for messages
607
@client.event
608
async def on_message(message):
@@ -628,7 +629,7 @@ async def daily_scheduler():
628
629
630
# bot's token
631
# token_file = open('files/testToken', 'r')# TO DO change back
-token_file = open('files/test_token', 'r')
632
+token_file = open('files/token', 'r')
633
token = token_file.read()
634
token_file.close()
635
0 commit comments