@@ -116,13 +116,13 @@ def _create_call_credentials(args):
116116 from google .auth import jwt as google_auth_jwt
117117
118118 if args .test_case == "oauth2_auth_token" :
119- google_credentials , unused_project_id = google_auth .default (
119+ google_credentials , _unused_project_id = google_auth .default (
120120 scopes = [args .oauth_scope ]
121121 )
122122 google_credentials .refresh (google_auth .transport .requests .Request ())
123123 return grpc .access_token_call_credentials (google_credentials .token )
124124 elif args .test_case == "compute_engine_creds" :
125- google_credentials , unused_project_id = google_auth .default (
125+ google_credentials , _unused_project_id = google_auth .default (
126126 scopes = [args .oauth_scope ]
127127 )
128128 return grpc .metadata_call_credentials (
@@ -163,7 +163,7 @@ def get_secure_channel_parameters(args):
163163 if args .custom_credentials_type is not None :
164164 if args .custom_credentials_type == "compute_engine_channel_creds" :
165165 assert call_credentials is None
166- google_credentials , unused_project_id = google_auth .default (
166+ google_credentials , _unused_project_id = google_auth .default (
167167 scopes = [args .oauth_scope ]
168168 )
169169 call_creds = grpc .metadata_call_credentials (
0 commit comments