Skip to content

Commit

Permalink
fixes assert
Browse files Browse the repository at this point in the history
  • Loading branch information
pcrespov committed Aug 13, 2024
1 parent b585c2a commit cf2a6b4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,6 @@ class Config:
allow_population_by_field_name = True


assert set(ServiceUpdateV2.__fields__.keys()).issubset( # nosec
assert set(ServiceUpdateV2.__fields__.keys()) - set( # nosec
ServiceGetV2.__fields__.keys()
)
) == {"deprecated"}

0 comments on commit cf2a6b4

Please sign in to comment.