mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 19:28:25 +02:00
10 lines
199 B
Python
10 lines
199 B
Python
import subprocess
|
|
import sys
|
|
import os
|
|
|
|
from source.definition import *
|
|
|
|
|
|
def restart():
|
|
subprocess.Popen([sys.executable] + sys.argv, creationflags=CREATE_NO_WINDOW, cwd=os.getcwd())
|
|
exit()
|