This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-3-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 465834bfbe59f122811c13d90399bb6d5a9f5902 Author: Jon Crall <erote...@gmail.com> AuthorDate: Tue Jun 21 09:13:33 2022 -0400 Fix typo (#24568) (cherry picked from commit d6cd528cab4caab2b38866db3b174ff366d9c66d) --- airflow/models/taskmixin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/models/taskmixin.py b/airflow/models/taskmixin.py index 1d66a719a6..06494946a8 100644 --- a/airflow/models/taskmixin.py +++ b/airflow/models/taskmixin.py @@ -237,7 +237,7 @@ class DAGNode(DependencyMixin, metaclass=ABCMeta): task_or_task_list: Union[DependencyMixin, Sequence[DependencyMixin]], edge_modifier: Optional["EdgeModifier"] = None, ) -> None: - """Set a node (or nodes) to be directly downstream from the current node.""" + """Set a node (or nodes) to be directly upstream from the current node.""" self._set_relatives(task_or_task_list, upstream=True, edge_modifier=edge_modifier) @property