isort
This commit is contained in:
parent
dd3bf01529
commit
fd86c2fcc0
|
@ -1,5 +1,6 @@
|
||||||
from django.test import TestCase
|
|
||||||
from datetime import timedelta
|
from datetime import timedelta
|
||||||
|
|
||||||
|
from django.test import TestCase
|
||||||
from django.utils import timezone
|
from django.utils import timezone
|
||||||
|
|
||||||
from .models import Helper, Room, Shift, ShiftRegistration
|
from .models import Helper, Room, Shift, ShiftRegistration
|
||||||
|
|
|
@ -14,9 +14,9 @@ Including another URLconf
|
||||||
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
from django.conf import settings
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
from django.urls import include, path
|
from django.urls import include, path
|
||||||
from django.conf import settings
|
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path("", include("shiftregister.metrics.urls")),
|
path("", include("shiftregister.metrics.urls")),
|
||||||
|
|
Loading…
Reference in New Issue