Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
pcrespov committed Nov 21, 2024
1 parent 5194888 commit b20528b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
workspaces.c.trashed_by,
)

assert set(WorkspaceDB.__fields__) == {c.name for c in _SELECTION_ARGS} # nosec
assert set(WorkspaceUpdateDB.__fields__).issubset( # nosec
assert set(WorkspaceDB.model_fields) == {c.name for c in _SELECTION_ARGS} # nosec
assert set(WorkspaceUpdateDB.model_fields).issubset( # nosec
c.name for c in workspaces.columns
)

Expand Down

0 comments on commit b20528b

Please sign in to comment.