Skip to content

Commit

Permalink
style: style
Browse files Browse the repository at this point in the history
  • Loading branch information
EdoStorm96 committed Oct 1, 2024
1 parent 0b715db commit 8d955e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion proposals/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,9 @@ def clean(self):
cleaned_data = super(FundingForm, self).clean()

if not cleaned_data["funding"]:
self.add_error("funding", _("Je dient minstens een van de opties te selecteren."))
self.add_error(
"funding", _("Je dient minstens een van de opties te selecteren.")
)

self.check_dependency_multiple(
cleaned_data, "funding", "needs_details", "funding_details"
Expand Down

0 comments on commit 8d955e6

Please sign in to comment.