From db47f5638e6ef9c473f2db5a50ecee4cc3e9eaa6 Mon Sep 17 00:00:00 2001 From: Phin Wolkwitz Date: Fri, 19 Dec 2025 12:12:17 +0100 Subject: [PATCH] Improve helper function --- src/pretix/presale/checkoutflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/presale/checkoutflow.py b/src/pretix/presale/checkoutflow.py index a6035d3c4b..c069939154 100644 --- a/src/pretix/presale/checkoutflow.py +++ b/src/pretix/presale/checkoutflow.py @@ -1509,7 +1509,7 @@ class ConfirmStep(CartMixin, AsyncAction, TemplateFlowStep): def _default_invisible(self, transmission_type): # reusing hack from questions.py for default transmission -- this should at least be fast - for k, __ in transmission_type.invoice_address_form_fields.items(): + for k in transmission_type.invoice_address_form_fields.keys(): if ( transmission_type.identifier == "email" and k in ("transmission_email_other", "transmission_email_address") and