We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbe8766 commit b288c89Copy full SHA for b288c89
Project 2/books2.py
@@ -24,7 +24,7 @@ def __init__(self, id, title, author, description, rating, published_date):
24
25
26
class BookRequest(BaseModel):
27
- Field(description='ID is not needed on create', default=None)
+ id: Optional[int] = Field(description='ID is not needed on create', default=None)
28
title: str = Field(min_length=3)
29
author: str = Field(min_length=1)
30
description: str = Field(min_length=1, max_length=100)
0 commit comments