ashb commented on code in PR #59604:
URL: https://github.com/apache/airflow/pull/59604#discussion_r2671767577
##########
airflow-core/src/airflow/models/dagrun.py:
##########
@@ -1556,7 +1556,10 @@ def _expand_mapped_task_if_needed(ti: TI) ->
Iterable[TI] | None:
if TYPE_CHECKING:
assert isinstance(schedulable.task, Operator)
old_state = schedulable.state
- if not schedulable.are_dependencies_met(session=session,
dep_context=dep_context):
+ if not schedulable.are_dependencies_met(
+ session=session,
+ dep_context=dep_context,
+ ):
Review Comment:
This is (now) just a formatting change, so lets undo it
```suggestion
if not schedulable.are_dependencies_met(session=session,
dep_context=dep_context):
```
--
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]