Fix tags's declare (#2054)

This commit is contained in:
Sebastián Ramírez
2020-11-05 22:43:28 +01:00
committed by GitHub

View File

@@ -16,7 +16,7 @@ class Item(BaseModel):
description: Optional[str] = None
price: float
tax: Optional[float] = None
tags: Set[str] = []
tags: Set[str] = set()
image: Optional[Image] = None