revert Обновить main.py
This commit is contained in:
Xander 2023-10-18 15:03:39 +03:00
parent bacddb4fd7
commit a352986746
1 changed files with 10 additions and 8 deletions

18
main.py
View File

@ -1,9 +1,11 @@
import subprocess import subprocess
def start(): def start():
# Замените 'your_script.py' на имя вашего файла
file_to_run = 'on.py' file_to_run = 'on.py'
subprocess.run(['python', file_to_run])
# Запускаем файл
subprocess.run(['python', file_to_run])
if __name__ == '__main__':
if __name__ == '__main__':
start() start()