Reorganize imports

This commit is contained in:
PCoder 2019-02-02 22:32:33 +01:00
parent 1e457ea1f0
commit f112b85f17
1 changed files with 1 additions and 2 deletions

View File

@ -13,10 +13,9 @@ 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 django.conf import settings
from django.contrib import admin
from django.urls import path, include, re_path
from django.contrib.auth import views as auth_views
from django.urls import path, include, re_path
from users.views import signup