📝 Fix example code with sets in Tutorial - Body - Nested Models (#2052)

This commit is contained in:
hitrust authored and GitHub committed 2020-11-05 22:38:59 +01:00
1 parent 7e708f7411
commit dfcc6bc154
1 file changed
+1 -1
+1 -1
View File
@@ -16,7 +16,7 @@ class Item(BaseModel):
description: Optional[str] = None description: Optional[str] = None
price: float price: float
tax: Optional[float] = None tax: Optional[float] = None
tags: Set[str] = [] tags: Set[str] = set()
images: Optional[List[Image]] = None images: Optional[List[Image]] = None