diff --git a/src/postorius/forms.py b/src/postorius/forms.py index 67b937c..6b7180c 100644 --- a/src/postorius/forms.py +++ b/src/postorius/forms.py @@ -730,7 +730,6 @@ class ListMassSubscription(FieldsetForm): - """Form fields to masssubscribe users to a list. """ emails = forms.CharField( @@ -738,16 +737,6 @@ widget=forms.Textarea, ) - verify_with_email = forms.BooleanField(required=False) - - class Meta: - - """ - Class to define the name of the fieldsets and what should be - included in each. - """ - layout = [["Mass subscription", "emails"]] - class ListMassRemoval(FieldsetForm):