Skip to content

Commit

Permalink
Fix incorrect imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rixx committed Oct 10, 2024
1 parent 7061b7d commit 31fbb28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pretalx_public_voting/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from django.utils.translation import gettext_lazy as _
from django_scopes.forms import SafeModelMultipleChoiceField
from i18nfield.forms import I18nModelForm
from pretalx.common.forms.renderers import FormInlineLabelRenderer, FormInlineRenderer
from pretalx.common.forms.renderers import InlineFormLabelRenderer, InlineFormRenderer
from pretalx.common.forms.widgets import EnhancedSelectMultiple
from pretalx.common.urls import build_absolute_uri
from pretalx.mail.models import QueuedMail
Expand All @@ -12,7 +12,7 @@


class SignupForm(forms.Form):
default_renderer = FormInlineLabelRenderer
default_renderer = InlineFormLabelRenderer

email = forms.EmailField(required=True)

Expand Down Expand Up @@ -66,7 +66,7 @@ def send_email(self):


class VoteForm(forms.Form):
default_renderer = FormInlineRenderer
default_renderer = InlineFormRenderer

def __init__(
self,
Expand Down

0 comments on commit 31fbb28

Please sign in to comment.