dstandish commented on a change in pull request #20575:
URL: https://github.com/apache/airflow/pull/20575#discussion_r776869078
##########
File path: airflow/providers/amazon/aws/operators/eks.py
##########
@@ -18,12 +18,13 @@
"""This module contains Amazon EKS operators."""
import warnings
from time import sleep
-from typing import Dict, Iterable, List, Optional
+from typing import Dict, Iterable, List, Optional, Union
from airflow import AirflowException
from airflow.models import BaseOperator
from airflow.providers.amazon.aws.hooks.eks import ClusterStates, EksHook,
FargateProfileStates
from airflow.providers.cncf.kubernetes.operators.kubernetes_pod import
KubernetesPodOperator
+from airflow.utils.types import NOTSET, ArgNotSet
Review comment:
OK i have replaced NOTSET with None
None works fine in this case because for KPO None is not allowed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]