nuclearpinguin commented on a change in pull request #7495: [AIRFLOW-6873] fix
mypyd errors and add new type annotations
URL: https://github.com/apache/airflow/pull/7495#discussion_r382904668
##########
File path: airflow/jobs/scheduler_job.py
##########
@@ -631,7 +631,7 @@ def create_dag_run(self, dag, session=None):
return next_run
@provide_session
- def _process_task_instances(self, dag, task_instances_list, session=None):
+ def _process_task_instances(self, dag, task_instances_list:
List[TaskInstanceKeyType], session=None):
Review comment:
```suggestion
def _process_task_instances(self, dag: DAG, task_instances_list:
List[TaskInstanceKeyType], session=None):
```
----------------------------------------------------------------
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]
With regards,
Apache Git Services