Spaces:
Build error
Build error
File size: 144 Bytes
11c2c17 |
1 2 3 4 5 6 |
import threading
from typing import *
def fire_in_thread(f, *args, **kwargs):
threading.Thread(target=f, args=args, kwargs=kwargs).start() |