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

6 lines
144 B
Python

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