mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-12-29 03:20:32 +00:00
Python formatting
This commit is contained in:
parent
6161f60695
commit
1d0f6d5243
1 changed files with 5 additions and 1 deletions
|
@ -238,7 +238,11 @@ urlpatterns = [
|
||||||
# imports
|
# imports
|
||||||
re_path(r"^import/?$", views.Import.as_view(), name="import"),
|
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+)/?$", 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
|
# users
|
||||||
re_path(rf"{USER_PATH}\.json$", views.User.as_view()),
|
re_path(rf"{USER_PATH}\.json$", views.User.as_view()),
|
||||||
re_path(rf"{USER_PATH}/?$", views.User.as_view(), name="user-feed"),
|
re_path(rf"{USER_PATH}/?$", views.User.as_view(), name="user-feed"),
|
||||||
|
|
Loading…
Reference in a new issue