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

@ -7,7 +7,7 @@ from dateutil.parser import isoparse
from ..models.uuid import Uuid
from ..types import UNSET, Unset
LQ = TypeVar("LQ", bound="VerificationToken")
HY = TypeVar("HY", bound="VerificationToken")
@attr.s(auto_attribs=True)
@ -54,7 +54,7 @@ class VerificationToken:
return field_dict
@classmethod
def from_dict(cls: Type[LQ], src_dict: Dict[str, Any]) -> LQ:
def from_dict(cls: Type[HY], src_dict: Dict[str, Any]) -> HY:
d = src_dict.copy()
_created_at = d.pop("created_at", UNSET)
created_at: Union[Unset, datetime.datetime]