Python formatting

This commit is contained in:
Mouse Reeve 2021-11-12 15:06:23 -08:00
parent 6161f60695
commit 1d0f6d5243

View file

@ -238,7 +238,11 @@ urlpatterns = [
# imports
re_path(r"^import/?$", views.Import.as_view(), name="import"),
re_path(r"^import/(\d+)/?$", views.ImportStatus.as_view(), name="import-status"),
re_path(r"^import/(\d+)/failed/?$", views.ImportTroubleshoot.as_view(), name="import-troubleshoot"),
re_path(
r"^import/(\d+)/failed/?$",
views.ImportTroubleshoot.as_view(),
name="import-troubleshoot",
),
# users
re_path(rf"{USER_PATH}\.json$", views.User.as_view()),
re_path(rf"{USER_PATH}/?$", views.User.as_view(), name="user-feed"),