fix isort

This commit is contained in:
Richard Schreiber
2021-12-21 10:37:53 +01:00
parent 81ea417e02
commit 39db3650ad
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ from pretix.presale.views.organizer import (
filter_qs_by_attr, weeks_for_template,
)
from ...helpers.formats.en.formats import WEEK_FORMAT, SHORT_MONTH_DAY_FORMAT
from ...helpers.formats.en.formats import SHORT_MONTH_DAY_FORMAT, WEEK_FORMAT
from . import (
CartMixin, EventViewMixin, allow_frame_if_namespaced, get_cart,
iframe_entry_view_wrapper,
+3 -1
View File
@@ -63,7 +63,9 @@ from pretix.base.models import (
from pretix.base.services.quotas import QuotaAvailability
from pretix.helpers.compat import date_fromisocalendar
from pretix.helpers.daterange import daterange
from pretix.helpers.formats.en.formats import WEEK_FORMAT, SHORT_MONTH_DAY_FORMAT
from pretix.helpers.formats.en.formats import (
SHORT_MONTH_DAY_FORMAT, WEEK_FORMAT,
)
from pretix.multidomain.urlreverse import eventreverse
from pretix.presale.ical import get_ical
from pretix.presale.views import OrganizerViewMixin