josh-fell commented on a change in pull request #20571:
URL: https://github.com/apache/airflow/pull/20571#discussion_r776757896



##########
File path: airflow/providers/amazon/aws/operators/eks.py
##########
@@ -623,7 +623,7 @@ class EksPodOperator(KubernetesPodOperator):
     :type aws_conn_id: str
     """
 
-    template_fields: Iterable[str] = {
+    template_fields: Sequence[str] = {

Review comment:
       Looks like the expression is a set here. Convert to a tuple maybe?

##########
File path: airflow/providers/qubole/operators/qubole_check.py
##########
@@ -105,7 +105,7 @@ class QuboleCheckOperator(_QuboleCheckOperatorMixin, 
SQLCheckOperator, QuboleOpe
 
     """
 
-    template_fields: Iterable[str] = set(QuboleOperator.template_fields) | set(
+    template_fields: Sequence[str] = set(QuboleOperator.template_fields) | set(

Review comment:
       Expression is a set here too.




-- 
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]


Reply via email to