Archie Ferguson
02/26/2024, 11:27 PM@flow
def my_func(self):
...
I'm currently getting a ParameterBindError: missing a required argument: 'self'
when calling the func. It can be fixed by calling self.my`_func_.__run(self).result()` , but it just isn't very pretty. Is there another way I can do this or is it not supported? Thanks!