Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

committing changes to new branch #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion api/schema/book.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ class BookBase(BaseModel):
author: str
publication_year: Optional[int] = None
rating: Optional[int] = None
genre: Optional[str] = None

# TODO
# Add a 'genre' field here. You'll need to add it in a few other places as well!
Expand All @@ -24,7 +25,8 @@ def from_base(base: BookBase, id: int):
title = base.title,
author = base.author,
publication_year = base.publication_year,
rating = base.rating
rating = base.rating,
genre = base.genre
)


Expand Down