From 4a12e4c7232ad279bba2e3ab2695610a403e8330 Mon Sep 17 00:00:00 2001 From: Pankaj Singh <98807258+pankajastro@users.noreply.github.com> Date: Wed, 31 Jan 2024 11:59:33 +0530 Subject: [PATCH] Change format as per PEP 8 conventions (#1467) * Change format as per PEP 8 conventions * Change format as per PEP 8 conventions --- astronomer/providers/google/cloud/gke_utils.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/astronomer/providers/google/cloud/gke_utils.py b/astronomer/providers/google/cloud/gke_utils.py index 9f66bf136..36d651c04 100644 --- a/astronomer/providers/google/cloud/gke_utils.py +++ b/astronomer/providers/google/cloud/gke_utils.py @@ -76,9 +76,10 @@ def _get_gke_config_file( # Write config to a temp file and set the environment variable to point to it. # This is to avoid race conditions of reading/writing a single file - with tempfile.NamedTemporaryFile() as conf_file: - with patch_environ({KUBE_CONFIG_ENV_VAR: conf_file.name}): - hook.provide_authorized_gcloud() + # fmt: off + with tempfile.NamedTemporaryFile() as conf_file, patch_environ( + {KUBE_CONFIG_ENV_VAR: conf_file.name}), hook.provide_authorized_gcloud(): + # fmt: on # Attempt to get/update credentials # We call gcloud directly instead of using google-cloud-python api # because there is no way to write kubernetes config to a file, which is