Fix module import order

This commit is contained in:
Alexandre Iooss 2022-03-11 17:18:14 +01:00
parent 8d44182af8
commit 032c9086f8
5 changed files with 7 additions and 7 deletions

View file

@ -8,10 +8,10 @@ The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/2.2/topics/http/urls/
"""
from django.contrib import admin
from django.urls import include, path, re_path
from django.conf import settings
from django.conf.urls.static import static
from django.contrib import admin
from django.urls import include, path, re_path
from .views import IndexView, MediaAccess