Skip to content

Commit

Permalink
Merge branch 'db_package_branch' of github.com:fiaisis/db into db_pac…
Browse files Browse the repository at this point in the history
…kage_branch
  • Loading branch information
Pasarus committed Jul 30, 2024
2 parents 50882d6 + c1aab31 commit 6a7dae2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions db/data_models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ def __eq__(self, other: object) -> bool:
return False
# Ignores due to inspect returning Any, includes None, by default
return {attr.key: getattr(self, attr.key) for attr in inspect(self).mapper.column_attrs} == {
attr.key: getattr(other, attr.key)
for attr in inspect(other).mapper.column_attrs
attr.key: getattr(other, attr.key) for attr in inspect(other).mapper.column_attrs
}


Expand Down

0 comments on commit 6a7dae2

Please sign in to comment.