Skip to content

Commit e55694b

Browse files
committed
OidcDeviceAuthenticator: fixup redundant post data schema mixup
1 parent 4713495 commit e55694b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openeo/rest/auth/oidc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,7 @@ def _get_verification_info(self, request_refresh_token: bool = False) -> Verific
853853
"scope": self._client_info.provider.get_scopes_string(request_refresh_token=request_refresh_token),
854854
}
855855
if self._pkce:
856-
post_data["code_challenge"] = (self._pkce.code_challenge,)
856+
post_data["code_challenge"] = self._pkce.code_challenge
857857
post_data["code_challenge_method"] = self._pkce.code_challenge_method
858858
resp = self._requests.post(url=self._device_code_url, data=post_data)
859859
if resp.status_code != 200:

0 commit comments

Comments
 (0)