Hey everyone, just wondering if anyone could provi...
# ask-community
a
Hey everyone, just wondering if anyone could provide some clarity on prefect flows using instance methods? For example:
Copy code
@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!