From 11228ed003d8e9b3059955e9ea000f546fda32c5 Mon Sep 17 00:00:00 2001 From: Pelle Koster <pelle.koster@geant.org> Date: Fri, 10 Jan 2025 09:38:05 +0100 Subject: [PATCH] flak8 --- stripe_checkout/stripe_checkout/urls.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stripe_checkout/stripe_checkout/urls.py b/stripe_checkout/stripe_checkout/urls.py index 087feb7..04b5000 100644 --- a/stripe_checkout/stripe_checkout/urls.py +++ b/stripe_checkout/stripe_checkout/urls.py @@ -11,7 +11,9 @@ urlpatterns = [ "visitors/", include( [ - re_path(f"{visitor_id}/delete_orders/", delete_orders, name="delete-orders"), + re_path( + f"{visitor_id}/delete_orders/", delete_orders, name="delete-orders" + ), re_path(f"{visitor_id}/", update_visitor, name="update-visitor"), path("", list_visitors, name="list-visitors"), ] -- GitLab