07-05-2021, 03:32 PM
(This post was last modified: 07-05-2021, 03:32 PM by remkonoteboom.)
You mentioned that the TaskElementWdg can be really slow.
In task_element_wdg.py, there is a preprocess function, is it possible you can time it for me?
In task_element_wdg.py, there is a preprocess function, is it possible you can time it for me?
Code:
import time
start = time.time()
.... <all the code in preprocess> ...
print("time: ", time.time() - start)