Skip to content

Commit

Permalink
code lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cekk committed Jul 26, 2024
1 parent f0f4496 commit 5352259
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/iosanita/contenttypes/restapi/deserializers/dxcontent.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def validate_a_chi_si_rivolge(self, data, create):
if not create:
if (
"a_chi_si_rivolge" not in data
and "a_chi_si_rivolge_tassonomia" not in data
and "a_chi_si_rivolge_tassonomia" not in data # noqa
):
return
a_chi_si_rivolge = data.get("a_chi_si_rivolge", {})
Expand All @@ -68,7 +68,7 @@ def validate_event(self, data, create):
if not create:
if (
"organizzato_da_esterno" not in data
and "organizzato_da_interno" not in data
and "organizzato_da_interno" not in data # noqa
):
return

Expand Down

0 comments on commit 5352259

Please sign in to comment.