Skip to content

Commit da0747c

Browse files
fix: fix lint errors
Signed-off-by: Radhika Agrawal <[email protected]>
1 parent 633ab62 commit da0747c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

google/api_core/operations_v1/abstract_operations_base_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,9 @@ def __init__(
304304
use_client_cert = mtls.should_use_client_cert()
305305
else:
306306
# if unsupported, fallback to reading from env var
307-
use_client_cert_str = os.getenv("GOOGLE_API_USE_CLIENT_CERTIFICATE", "false").lower()
307+
use_client_cert_str = os.getenv(
308+
"GOOGLE_API_USE_CLIENT_CERTIFICATE", "false"
309+
).lower()
308310
if use_client_cert_str not in ("true", "false"):
309311
raise ValueError(
310312
"Environment variable `GOOGLE_API_USE_CLIENT_CERTIFICATE` must be"

0 commit comments

Comments
 (0)