diff --git a/valorant/models/base.py b/valorant/models/base.py index 49b0de5..8545c36 100644 --- a/valorant/models/base.py +++ b/valorant/models/base.py @@ -47,7 +47,7 @@ def __repr__(self) -> str: class BaseUUIDModel(BaseModel): - uuid: UUID = Field(alias='uuid') + uuid: UUID def __eq__(self, other: object) -> bool: return isinstance(other, self.__class__) and self.uuid == other.uuid