Skip to content

Commit

Permalink
fixed zora syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
alimaktabi committed Sep 7, 2024
1 parent 3ef8154 commit 0004e2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/constraints/zora.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ class DidMintZoraNFT(ConstraintVerification):
app_name = ConstraintApp.ZORA.value
_param_keys = [ConstraintParam.ADDRESS]

def __init__(self, user_profile) -> None:
super().__init__(user_profile)
def __init__(self, user_profile, *, obj=None) -> None:
super().__init__(user_profile, obj=obj)

def is_observed(self, *args, **kwargs) -> bool:
zora_util = ZoraUtil()
Expand Down

0 comments on commit 0004e2e

Please sign in to comment.