potiuk commented on a change in pull request #16674:
URL: https://github.com/apache/airflow/pull/16674#discussion_r659726557
##########
File path: tests/jobs/test_scheduler_job.py
##########
@@ -3650,7 +3650,7 @@ def test_task_with_upstream_skip_process_task_instances():
assert dr is not None
with create_session() as session:
- tis = {ti.task_id: ti for ti in dr.get_task_instances(session=session)}
+ tis = {ti.task_id: ti for ti in
dr.get_task_instances(session=session)} # pylint: disable=no-member
Review comment:
```suggestion
tis = {ti.task_id: ti for ti in
dr.get_task_instances(session=session)}
```
--
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]