Python formatting

This commit is contained in:
Mouse Reeve
2022-02-25 17:23:13 -08:00
parent b001c31f97
commit 29a6d74ff2
4 changed files with 14 additions and 11 deletions

View File

@@ -496,7 +496,9 @@ urlpatterns = [
),
re_path(rf"{BOOK_PATH}/edit/?$", views.EditBook.as_view(), name="edit-book"),
re_path(rf"{BOOK_PATH}/confirm/?$", views.ConfirmEditBook.as_view()),
re_path(r"^create-book/data/?$", views.create_book_from_data, name="create-book-data"),
re_path(
r"^create-book/data/?$", views.create_book_from_data, name="create-book-data"
),
re_path(r"^create-book/?$", views.CreateBook.as_view(), name="create-book"),
re_path(r"^create-book/confirm/?$", views.ConfirmEditBook.as_view()),
re_path(rf"{BOOK_PATH}/editions(.json)?/?$", views.Editions.as_view()),