mirror of https://github.com/tiangolo/fastapi.git
📝 Fix example code with sets in Tutorial - Body - Nested Models (#2052)
This commit is contained in:
parent
7e708f7411
commit
dfcc6bc154
|
|
@ -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 New Issue