Fix linter errors

This commit is contained in:
Seamus Johnston 2022-09-29 11:30:07 -05:00
parent c7265285a8
commit f910563d11
No known key found for this signature in database
GPG key ID: 2F21225985069105
7 changed files with 101 additions and 61 deletions

View file

@ -22,7 +22,7 @@ urlpatterns = [
# was actually True. Instead, let's add these URLs any time we are able to
# import the debug toolbar package.
try:
import debug_toolbar
import debug_toolbar # type: ignore
urlpatterns += [path("__debug__/", include(debug_toolbar.urls))]
except ImportError: