chore: Fix reqeust -> request typo

Copybara import of the project:

--
6beac4451fef1774365e75ab67779253c5ac79be by Calvin Giles <calvin.giles@trademe.co.nz>:

chore: Fix reqeust -> request typo
#non-breaking
COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/883 from calvingiles:fix-reqeust-typo cfe592e6ad4ebc79bd2b3ebcd0370f868b57ff10
PiperOrigin-RevId: 765354040
This commit is contained in:
Calvin Giles
2025-05-30 15:12:27 -07:00
committed by Copybara-Service
parent ba5b80d5d7
commit 4075290a1d
3 changed files with 10 additions and 15 deletions

View File

@@ -185,7 +185,7 @@ class ToolAuthHandler:
)
self.credential_store.store_credential(key, auth_credential)
def _reqeust_credential(self) -> None:
def _request_credential(self) -> None:
"""Handles the case where an OpenID Connect or OAuth2 authentication request is needed."""
if self.auth_scheme.type_ in (
AuthSchemeType.openIdConnect,
@@ -223,11 +223,6 @@ class ToolAuthHandler:
)
)
def _request_credential(self, auth_config: AuthConfig):
if not self.tool_context:
return
self.tool_context.request_credential(auth_config)
def prepare_auth_credentials(
self,
) -> AuthPreparationResult:
@@ -260,7 +255,7 @@ class ToolAuthHandler:
auth_credential=exchanged_credential,
)
else:
self._reqeust_credential()
self._request_credential()
return AuthPreparationResult(
state="pending",
auth_scheme=self.auth_scheme,