Update leenkx/blender/lnx/make.py

This commit is contained in:
Onek8 2025-03-23 16:46:18 +00:00
parent 609477737e
commit 6aeb9b0f22

View File

@ -76,7 +76,6 @@ def run_proc(cmd, done: Callable) -> subprocess.Popen:
# can be received by a polling function in the main thread
thread_callback_queue.put([threading.current_thread(), done], block=True)
while not thread_callback_queue.empty():
print("Processing callback from thread:", threading.current_thread())
thread, callback = thread_callback_queue.get()
if callback is not None:
callback()