mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 02:26:46 +00:00
Fix tags's declare
This commit is contained in:
parent
e77ea63577
commit
8486b41349
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()
|
||||
image: Optional[Image] = None
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue