瀏覽代碼

isorted import statements in tutorial example

Melissa Lewis 7 年之前
父節點
當前提交
d97cce3409
共有 1 個文件被更改,包括 1 次插入1 次删除
  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')),