Update api spec (#159)
* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
@ -4,7 +4,7 @@ import attr
|
||||
|
||||
from ..types import UNSET, Unset
|
||||
|
||||
ET = TypeVar("ET", bound="Export")
|
||||
QF = TypeVar("QF", bound="Export")
|
||||
|
||||
@attr.s(auto_attribs=True)
|
||||
class Export:
|
||||
@ -29,7 +29,7 @@ class Export:
|
||||
return field_dict
|
||||
|
||||
@classmethod
|
||||
def from_dict(cls: Type[ET], src_dict: Dict[str, Any]) -> ET:
|
||||
def from_dict(cls: Type[QF], src_dict: Dict[str, Any]) -> QF:
|
||||
d = src_dict.copy()
|
||||
from ..models.export_file import ExportFile
|
||||
files = cast(List[ExportFile], d.pop("files", UNSET))
|
||||
|
Reference in New Issue
Block a user