Procházet zdrojové kódy

Fix wrong type in docstring (#4067)

* Fix wrong type in docstring

* Remove trailing whitespace
Kirill Romanov před 7 roky
rodič
revize
a68b3d013c
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. 3 3
      celery/canvas.py

+ 3 - 3
celery/canvas.py

@@ -925,9 +925,9 @@ class group(Signature):
         [4, 8]
 
     Arguments:
-        *tasks (Signature): A list of signatures that this group will call.
-            If there's only one argument, and that argument is an iterable,
-            then that'll define the list of signatures instead.
+        *tasks (List[Signature]): A list of signatures that this group will
+            call. If there's only one argument, and that argument is an
+            iterable, then that'll define the list of signatures instead.
         **options (Any): Execution options applied to all tasks
             in the group.