Skip to content

Commit b288c89

Browse files
Eric RobyEric Roby
Eric Roby
authored and
Eric Roby
committed
init
1 parent fbe8766 commit b288c89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Project 2/books2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def __init__(self, id, title, author, description, rating, published_date):
2424

2525

2626
class BookRequest(BaseModel):
27-
Field(description='ID is not needed on create', default=None)
27+
id: Optional[int] = Field(description='ID is not needed on create', default=None)
2828
title: str = Field(min_length=3)
2929
author: str = Field(min_length=1)
3030
description: str = Field(min_length=1, max_length=100)

0 commit comments

Comments
 (0)