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
before_perform() & after_perform() should be called on class, not pass it in
Fixes a problem where you would have:
@classmethod
def before_perform(cls, metadata):
pass
and you would get an exception:
...
before_perform(payload_class, metadata)
TypeError: before_perform() takes exactly 2 arguments (3 given)
0 commit comments