uranusjr commented on a change in pull request #18675:
URL: https://github.com/apache/airflow/pull/18675#discussion_r720780836
##########
File path: airflow/www/views.py
##########
@@ -219,6 +219,82 @@ def get_date_time_num_runs_dag_runs_form_data(www_request,
session, dag):
}
+def task_group_to_tree(task_group, dag, dag_runs, tis):
+ """
+ Create a nested dict representation of this TaskGroup and its children
used to construct
+ the Graph.
+ """
+ if isinstance(task_group, BaseOperator):
Review comment:
The variable should probably not be named `task_group` 😛
--
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]