Fix isort

This commit is contained in:
Tom Hubrecht 2021-05-23 13:18:46 +02:00
parent f362bb1a60
commit 26e4b7c1af
2 changed files with 3 additions and 1 deletions

View file

@ -13,9 +13,10 @@ Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from example import views
from django.contrib import admin
from django.urls import include, path
from example import views
urlpatterns = [
path("admin/", admin.site.urls),

View file

@ -11,6 +11,7 @@ ignore =
[isort]
profile = black
combine_as_imports = true
known_django = django
known_first_party = authens,tests
sections = FUTURE,STDLIB,THIRDPARTY,DJANGO,FIRSTPARTY,LOCALFOLDER