Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-11-28 14:29:16 -08:00
parent 6b8807feea
commit 373b5ef4ae
123 changed files with 1858 additions and 1955 deletions

View File

@ -4,7 +4,7 @@ import attr
from ..types import UNSET, Unset
HD = TypeVar("HD", bound="OutputFile")
JK = TypeVar("JK", bound="OutputFile")
@attr.s(auto_attribs=True)
@ -31,7 +31,7 @@ class OutputFile:
return field_dict
@classmethod
def from_dict(cls: Type[HD], src_dict: Dict[str, Any]) -> HD:
def from_dict(cls: Type[JK], src_dict: Dict[str, Any]) -> JK:
d = src_dict.copy()
contents = d.pop("contents", UNSET)