This commit is contained in:
xAndy 2025-05-14 13:38:41 +02:00
parent dd3bf01529
commit fd86c2fcc0
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

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