You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got an attribute error saying "'Dummy' object has no attribute 'wait'" from "openfast_toolbox/case_generation/runner.py", line 69. The code there is p.wait(). It seems like if I set parallel=False for function run_fastfiles, it would lead to wait=True in function run_cmd. Then p=Dummy() is applied, but there is nothing in this class, and wait() is also not defined before the end of the function. Is this a bug or a mistake from myself? What is the purpose of defining wait() ? Thanks!
Kind regards
The text was updated successfully, but these errors were encountered:
Dear all,
I got an attribute error saying "'Dummy' object has no attribute 'wait'" from "openfast_toolbox/case_generation/runner.py", line 69. The code there is
p.wait()
. It seems like if I setparallel=False
for functionrun_fastfiles
, it would lead towait=True
in functionrun_cmd
. Thenp=Dummy()
is applied, but there is nothing in this class, andwait()
is also not defined before the end of the function. Is this a bug or a mistake from myself? What is the purpose of definingwait()
? Thanks!Kind regards
The text was updated successfully, but these errors were encountered: