mirror of
https://github.com/pretix/pretix.git
synced 2026-08-08 10:27:49 +00:00
fix flake8
This commit is contained in:
@@ -260,11 +260,11 @@ class RegistrationForm(forms.Form):
|
||||
customer, created = self.request.organizer.customers.get_or_create(
|
||||
email=self.cleaned_data['email'],
|
||||
defaults={
|
||||
"name_parts":self.cleaned_data['name_parts'],
|
||||
"phone":self.cleaned_data.get('phone'),
|
||||
"is_active":True,
|
||||
"is_verified":False,
|
||||
"locale":get_language_without_region(),
|
||||
"name_parts": self.cleaned_data['name_parts'],
|
||||
"phone": self.cleaned_data.get('phone'),
|
||||
"is_active": True,
|
||||
"is_verified": False,
|
||||
"locale": get_language_without_region(),
|
||||
}
|
||||
)
|
||||
if created:
|
||||
|
||||
Reference in New Issue
Block a user