From 1eb0539555d29f7dd92ce12ee05247aca1f5fd87 Mon Sep 17 00:00:00 2001 From: Wei Lee Date: Mon, 8 Jan 2024 18:11:05 +0800 Subject: [PATCH] style: fix mypy issue --- astronomer/providers/google/cloud/gke_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astronomer/providers/google/cloud/gke_utils.py b/astronomer/providers/google/cloud/gke_utils.py index 92e904819..2ae5018e6 100644 --- a/astronomer/providers/google/cloud/gke_utils.py +++ b/astronomer/providers/google/cloud/gke_utils.py @@ -9,7 +9,7 @@ from airflow.exceptions import AirflowException from airflow.providers.google.common.hooks.base_google import GoogleBaseHook from airflow.utils.process_utils import execute_in_subprocess, patch_environ -from google.auth import impersonated_credentials +from google.auth import impersonated_credentials # type: ignore[attr-defined] from google.cloud.container_v1 import ClusterManagerClient from google.oauth2.service_account import Credentials from kubernetes_asyncio.config.kube_config import KubeConfigLoader