Run optimized version

This commit is contained in:
Egor Guslyancev 2023-11-19 12:37:09 -03:00
parent 8fb1a6067b
commit 7a6411f6b0
GPG Key ID: D7E709AA465A55F9
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ def stop():
def start():
global proc
proc = subprocess.Popen(["python", "bot.py"])
proc = subprocess.Popen(["python", "-OO", "bot.py"])
if __name__ == "__main__":