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