GUI development

This commit is contained in:
BarsTiger
2022-01-27 20:40:23 +02:00
parent 4b3079733b
commit a2f6a34506
6 changed files with 17 additions and 15 deletions

View File

@@ -2,14 +2,6 @@ import threading
import subprocess
import time
def run(func, *args):
try:
subprocess.Popen(func, *args, shell=True)
except:
time.sleep(5)
def run_threaded(func, *args):
try:
threading.Thread(target=func, args=args).start()