File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ class AuthConfig(BaseModelWithConfig):
31
31
32
32
auth_scheme : AuthScheme
33
33
"""The auth scheme used to collect credentials"""
34
- raw_auth_credential : AuthCredential = None
34
+ raw_auth_credential : Optional [ AuthCredential ] = None
35
35
"""The raw auth credential used to collect credentials. The raw auth
36
36
credentials are used in some auth scheme that needs to exchange auth
37
37
credentials. e.g. OAuth2 and OIDC. For other auth scheme, it could be None.
38
38
"""
39
- exchanged_auth_credential : AuthCredential = None
39
+ exchanged_auth_credential : Optional [ AuthCredential ] = None
40
40
"""The exchanged auth credential used to collect credentials. adk and client
41
41
will work together to fill it. For those auth scheme that doesn't need to
42
42
exchange auth credentials, e.g. API key, service account etc. It's filled by
You can’t perform that action at this time.
0 commit comments