From fd86c2fcc0b06dbac9d4030015d379e956e1460b Mon Sep 17 00:00:00 2001 From: xAndy Date: Wed, 14 May 2025 13:38:41 +0200 Subject: [PATCH] isort --- shiftregister/app/tests.py | 3 ++- shiftregister/urls.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/shiftregister/app/tests.py b/shiftregister/app/tests.py index b607e8b..4f50b91 100644 --- a/shiftregister/app/tests.py +++ b/shiftregister/app/tests.py @@ -1,5 +1,6 @@ -from django.test import TestCase from datetime import timedelta + +from django.test import TestCase from django.utils import timezone from .models import Helper, Room, Shift, ShiftRegistration diff --git a/shiftregister/urls.py b/shiftregister/urls.py index bb1ce13..860d84b 100644 --- a/shiftregister/urls.py +++ b/shiftregister/urls.py @@ -14,9 +14,9 @@ Including another URLconf 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ +from django.conf import settings from django.contrib import admin from django.urls import include, path -from django.conf import settings urlpatterns = [ path("", include("shiftregister.metrics.urls")),