Browse Source

isorted import statements in tutorial example

Melissa Lewis 7 years ago
parent
commit
d97cce3409
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/intro/tutorial01.txt

+ 1 - 1
docs/intro/tutorial01.txt

@@ -289,8 +289,8 @@ The next step is to point the root URLconf at the ``polls.urls`` module. In
 .. snippet::
     :filename: mysite/urls.py
 
-    from django.urls import include, path
     from django.contrib import admin
+    from django.urls import include, path
 
     urlpatterns = [
         path('polls/', include('polls.urls')),