mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 02:26:46 +00:00
📝 Fix example code with sets in Tutorial - Body - Nested Models (#2052)
This commit is contained in:
parent
7e708f7411
commit
dfcc6bc154
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ class Item(BaseModel):
|
|||
description: Optional[str] = None
|
||||
price: float
|
||||
tax: Optional[float] = None
|
||||
tags: Set[str] = []
|
||||
tags: Set[str] = set()
|
||||
images: Optional[List[Image]] = None
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue