aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/payments/urls.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-09-15 17:00:55 +0100
committerMatthew Lemon <y@yulqen.org>2024-09-15 17:00:55 +0100
commit0215424d7980b46369c95fabf46a89f57c940e0d (patch)
tree3bc5267a7247878e927759f206a6e99ca4ef8a2b /pyblackbird_cc/payments/urls.py
parent1cb215828f193ec4bac25f4dabb08c9aadc34ede (diff)
Sorting imports only
Diffstat (limited to 'pyblackbird_cc/payments/urls.py')
-rw-r--r--pyblackbird_cc/payments/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pyblackbird_cc/payments/urls.py b/pyblackbird_cc/payments/urls.py
index dcfe3dc..4fdc758 100644
--- a/pyblackbird_cc/payments/urls.py
+++ b/pyblackbird_cc/payments/urls.py
@@ -1,7 +1,8 @@
from django.urls import path
from . import views
-from .views import CancelView, SuccessView
+from .views import CancelView
+from .views import SuccessView
app_name = "payments"