Skip to content

Commit

Permalink
fix: missed
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Dec 12, 2023
1 parent 27f357f commit 3819d7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tokenlists/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def model_dump(self, *args, **kwargs):

return super().model_dump(*args, **kwargs)

model_config = ConfigDict(froze=True)
model_config = ConfigDict(frozen=True)


class BridgeInfo(BaseModel):
Expand Down Expand Up @@ -176,7 +176,7 @@ def __init__(self, *args, **kwargs):
f"Missing reference tags in tokenlist: {token_ref_tags - tokenlist_tags}"
)

model_config = ConfigDict(froze=False)
model_config = ConfigDict(frozen=False)

@field_validator("logoURI")
def validate_uri(cls, v: Optional[str]) -> Optional[str]:
Expand Down

0 comments on commit 3819d7c

Please sign in to comment.