Python formatting

This commit is contained in:
Mouse Reeve
2022-01-11 10:41:33 -08:00
parent 4ca90ca10f
commit 0f9881365b
2 changed files with 8 additions and 5 deletions

View File

@ -457,7 +457,11 @@ urlpatterns = [
# reading progress
re_path(r"^edit-readthrough/?$", views.edit_readthrough, name="edit-readthrough"),
re_path(r"^delete-readthrough/?$", views.delete_readthrough),
re_path(r"^create-readthrough/?$", views.ReadThrough.as_view(), name="create-readthrough"),
re_path(
r"^create-readthrough/?$",
views.ReadThrough.as_view(),
name="create-readthrough",
),
re_path(r"^delete-progressupdate/?$", views.delete_progressupdate),
# shelve actions
re_path(