got further

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-11-28 15:17:44 -08:00
parent 373b5ef4ae
commit 058b4dc40a
76 changed files with 1478 additions and 752 deletions

View File

@ -47,8 +47,10 @@ class DeviceAccessTokenRequestForm:
grant_type: Union[Unset, OAuth2GrantType]
if isinstance(_grant_type, Unset):
grant_type = UNSET
if _grant_type is None:
grant_type = UNSET
else:
grant_type = _grant_type # type: ignore[arg-type]
grant_type = _grant_type
device_access_token_request_form = cls(
client_id=client_id,