Fix imports

This commit is contained in:
Mira Weller
2025-02-28 19:41:43 +01:00
parent 6a0d316b82
commit 72bf4a2908
4 changed files with 16 additions and 9 deletions

View File

@@ -2,8 +2,11 @@ from django import forms
from django.forms import formset_factory
from django.utils.translation import gettext_lazy as _
from pretix.base.datasync.datasync import (
MODE_APPEND_LIST, MODE_OVERWRITE, MODE_SET_IF_EMPTY, MODE_SET_IF_NEW,
)
from pretix.base.datasync.sourcefields import QUESTION_TYPE_IDENTIFIERS
from pretix.base.datasync.datasync import MODE_SET_IF_NEW, MODE_SET_IF_EMPTY, MODE_OVERWRITE, MODE_APPEND_LIST
class PropertyMappingForm(forms.Form):
pretix_field = forms.CharField()