fix flake8

This commit is contained in:
Richard Schreiber
2025-03-12 12:26:30 +01:00
parent fa0aa71c5c
commit e70a903875
+5 -5
View File
@@ -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: