You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2021/01/05 00:24:16 UTC

[airflow] branch master updated: Fix typo in TaskGroup docstrings (#13475)

This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new 891fb2d  Fix typo in TaskGroup docstrings (#13475)
891fb2d is described below

commit 891fb2d9f42e180abd12a11db5a52fe4a334ab29
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Tue Jan 5 00:23:59 2021 +0000

    Fix typo in TaskGroup docstrings (#13475)
    
    `prerfix_group_id` -> `prefix_group_id`
---
 airflow/utils/task_group.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/utils/task_group.py b/airflow/utils/task_group.py
index d3d29c2..521c53d 100644
--- a/airflow/utils/task_group.py
+++ b/airflow/utils/task_group.py
@@ -42,7 +42,7 @@ class TaskGroup(TaskMixin):
     :param prefix_group_id: If set to True, child task_id and group_id will be prefixed with
         this TaskGroup's group_id. If set to False, child task_id and group_id are not prefixed.
         Default is True.
-    :type prerfix_group_id: bool
+    :type prefix_group_id: bool
     :param parent_group: The parent TaskGroup of this TaskGroup. parent_group is set to None
         for the root TaskGroup.
     :type parent_group: TaskGroup