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")),