Skip to content

Commit 3bdd40c

Browse files
authored
Remove settings import from install instructions. (#1528)
The import of settings is no longer required after #1349
1 parent d0300b1 commit 3bdd40c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/installation.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,10 @@ Setting up URLconf
5151
Add the Debug Toolbar's URLs to your project's URLconf::
5252

5353
import debug_toolbar
54-
from django.conf import settings
5554
from django.urls import include, path
5655

5756
urlpatterns = [
58-
...
57+
# ...
5958
path('__debug__/', include(debug_toolbar.urls)),
6059
]
6160

0 commit comments

Comments
 (0)