Josh
01/14/2022, 11:01 PMerror: <nothing> not callable
for the task run when I try to test it out
class MyTask(Task):
def run(self):
# do something
return True
if __name__ == "__main__":
my_task = MyTask()
with Flow("My Flow") as flow:
my_task()
flow.run()
Josh
01/14/2022, 11:03 PMmy_task()
Josh
01/14/2022, 11:05 PMKevin Kho