subkanthi commented on a change in pull request #20434:
URL: https://github.com/apache/airflow/pull/20434#discussion_r772656504



##########
File path: tests/providers/amazon/aws/operators/test_eks.py
##########
@@ -49,10 +52,16 @@
 NAME_LIST = ["foo", "bar", "baz", "qux"]
 
 
+class clusterParams(TypedDict):
+    cluster_name: str
+    cluster_role_arn: str
+    resources_vpc_config: Dict[Any, Any]
+
+
 class TestEksCreateClusterOperator(unittest.TestCase):
     def setUp(self) -> None:
         # Parameters which are needed to create a cluster.
-        self.create_cluster_params = dict(
+        self.create_cluster_params: clusterParams = dict(

Review comment:
       @potiuk please let me know your thoughts on this approach for fixing 
dict unpacking.




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