Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hamim23z authored Jan 29, 2023
1 parent 65099d3 commit 4b7c7a0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

intents = discord.Intents.default()
intents.members = True
intents.message_content = True

bot = commands.Bot(command_prefix='?', description=description, intents=intents)

Expand All @@ -18,8 +17,11 @@
process2 = subprocess.Popen(["python", "shoesize.py"])
process3 = subprocess.Popen(["python", "website.py"])
process4 = subprocess.Popen(["python", "companies.py"])
process5 = subprocess.Popen(["python", "ebayviews.py"])


process1.wait() # Wait for process1 to finish (basically wait for script to finish)
process2.wait()
process3.wait()
process4.wait()
process4.wait()
process5.wait()

0 comments on commit 4b7c7a0

Please sign in to comment.