kaxil commented on code in PR #54857:
URL: https://github.com/apache/airflow/pull/54857#discussion_r2295016871


##########
task-sdk/src/airflow/sdk/definitions/taskgroup.py:
##########
@@ -673,97 +670,3 @@ def iter_mapped_dependencies(self) -> Iterator[Operator]:
 
         for op, _ in XComArg.iter_xcom_references(self._expand_input):
             yield op
-
-
-@cache
-def get_task_group_children_getter() -> Callable:
-    """Get the Task Group Children Getter for the DAG."""
-    sort_order = conf.get("api", "grid_view_sorting_order")
-    if sort_order == "topological":
-        return methodcaller("topological_sort")
-    return methodcaller("hierarchical_alphabetical_sort")
-
-
-def task_group_to_dict(task_item_or_group, parent_group_is_mapped=False):

Review Comment:
   This are purely used in UI & API to display in Grid & Graph view



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

Reply via email to