ephraimbuddy commented on code in PR #32351:
URL: https://github.com/apache/airflow/pull/32351#discussion_r1262371712


##########
airflow/models/taskmixin.py:
##########
@@ -165,6 +182,11 @@ class DAGNode(DependencyMixin, metaclass=ABCMeta):
     def node_id(self) -> str:
         raise NotImplementedError()
 
+    @abstractmethod
+    def add_to_taskgroup(self, task_group: TaskGroup) -> None:
+        """Add the task to the given task group."""
+        raise NotImplementedError()

Review Comment:
   Was following what was done for root and leaves, removing it worked



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