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_r382904690
 
 

 ##########
 File path: airflow/jobs/scheduler_job.py
 ##########
 @@ -672,7 +672,7 @@ def _process_task_instances(self, dag, 
task_instances_list, session=None):
                     self.log.debug('Queuing task: %s', ti)
                     task_instances_list.append(ti.key)
 
-    def _process_dags(self, dagbag, dags, tis_out):
+    def _process_dags(self, dagbag, dags, tis_out: List[TaskInstanceKeyType]):
 
 Review comment:
   ```suggestion
       def _process_dags(self, dagbag: DagBag, dags: List[DAG], tis_out: 
List[TaskInstanceKeyType]):
   ```

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

Reply via email to