Fix tags's declare

This commit is contained in:
hitrust 2020-09-15 14:40:49 +08:00 committed by GitHub
parent e77ea63577
commit 8486b41349
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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