urls.py: fix style

This commit is contained in:
Sean Molenaar 2023-11-30 11:25:51 +01:00 committed by GitHub
parent e144ce19fa
commit b7ba6f1a36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -785,7 +785,7 @@ urlpatterns = [
r"^summary_revoke_key/?$", views.summary_revoke_key, name="summary-revoke-key"
),
path("guided-tour/<tour>", views.toggle_guided_tour),
re_path(r'^o/', include('oauth2_provider.urls', namespace='oauth2_provider')),
re_path(r"^o/", include("oauth2_provider.urls", namespace="oauth2_provider")),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
# Serves /static when DEBUG is true.