Browse Source

Format code with black

rafalp 6 years ago
parent
commit
ccf15490e5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      misago/legal/forms.py

+ 1 - 1
misago/legal/forms.py

@@ -61,7 +61,7 @@ class FilterAgreementsForm(forms.Form):
     type = forms.ChoiceField(
         label=_("Type"),
         required=False,
-        choices=[("", _("All types")),] + Agreement.TYPE_CHOICES,
+        choices=[("", _("All types"))] + Agreement.TYPE_CHOICES,
     )
     content = forms.CharField(label=_("Content"), required=False)