mik-laj commented on a change in pull request #9969:
URL: https://github.com/apache/airflow/pull/9969#discussion_r460303741
##########
File path: airflow/providers/amazon/aws/operators/emr_create_job_flow.py
##########
@@ -70,7 +71,7 @@ def execute(self, context):
if isinstance(self.job_flow_overrides, str):
self.job_flow_overrides = ast.literal_eval(self.job_flow_overrides)
- response = emr.create_job_flow(self.job_flow_overrides)
+ response = emr.create_job_flow(self.job_flow_overrides) # type:
ignore
Review comment:
```
job_flow_overrides = ast.literal_eval(self.job_flow_overrides)
else:
job_flow_overrides = self.job_flow_overrides
response = emr.create_job_flow(job_flow_overrides)
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]