Improve chunks type.
This commit is contained in:
parent
1a09393dcb
commit
37f5a4509f
@ -31,7 +31,10 @@ class CollectionItemRevisionInOut(BaseModel):
|
|||||||
uid: str
|
uid: str
|
||||||
meta: bytes
|
meta: bytes
|
||||||
deleted: bool
|
deleted: bool
|
||||||
chunks: t.List[t.Tuple[str, t.Optional[bytes]]]
|
chunks: t.List[t.Union[
|
||||||
|
t.Tuple[str],
|
||||||
|
t.Tuple[str, bytes],
|
||||||
|
]]
|
||||||
|
|
||||||
class Config:
|
class Config:
|
||||||
orm_mode = True
|
orm_mode = True
|
||||||
|
Loading…
Reference in New Issue
Block a user