Files
Kohya-ss-sd-scripts/library/utils.py
2023-04-02 17:39:21 +09:00

8 lines
184 B
Python

import threading
from typing import *
def fire_in_thread(f):
def wrapped(*args, **kwargs):
threading.Thread(target=f, args=args, kwargs=kwargs).start()
return wrapped