I am using repl.it to run two bots in the same repl and I'm using imports as a I saw in other stackoverflow questions.
print('This will be the page where all bots will be made.')
import os
import bot1
import keep_alive
import bot2
import keep_alive1
while True:
print('ALL BOTS STARTED!')
The problem is, it never gets to the while
loop (it's for testing) because it gets stuck in the bot1 file. How should I fix this? The reason I'm doing it in the same repl project is so I can merge the bot database.