Fixed black lint

This commit is contained in:
Théo DURR 2022-08-27 19:48:23 +02:00
parent f4dfd8f99c
commit b97ce81dd2
No known key found for this signature in database
GPG Key ID: 708858E9F7281E30

View File

@ -54,9 +54,11 @@ handler500 = "core.views.internal_servor_error"
# Sentry Test case # Sentry Test case
if settings.DEBUG: if settings.DEBUG:
def trigger_error(request): def trigger_error(request):
division_by_zero = 1 / 0 division_by_zero = 1 / 0
urlpatterns = [ urlpatterns = [
path("", include(("core.urls", "core"), namespace="core")), path("", include(("core.urls", "core"), namespace="core")),
path("rootplace/", include(("rootplace.urls", "rootplace"), namespace="rootplace")), path("rootplace/", include(("rootplace.urls", "rootplace"), namespace="rootplace")),
@ -92,7 +94,6 @@ urlpatterns = [
] ]
if settings.DEBUG: if settings.DEBUG:
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)