Skip to content

Commit

Permalink
chore: eq for Schema
Browse files Browse the repository at this point in the history
  • Loading branch information
molozey authored and molozey committed Dec 5, 2024
1 parent 186a2e5 commit bd70c2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litestar/openapi/spec/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ def field_aliases(cls) -> dict[str, str]:
cls._field_aliases = retval # type: ignore[attr-defined]
return retval

def __eq__(self, other: "Schema"):
def __eq__(self, other: object):
return super().__eq__(other)


Expand Down

0 comments on commit bd70c2f

Please sign in to comment.