Skip to content

Commit 37387b3

Browse files
committed
fix missing asterisks for args kwargs
1 parent 5d0cf00 commit 37387b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/groupby/groupby.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -771,9 +771,9 @@ def pipe(
771771
a `(callable, data_keyword)` tuple where `data_keyword` is a
772772
string indicating the keyword of `callable` that expects the
773773
GroupBy object.
774-
args : iterable, optional
774+
*args : iterable, optional
775775
Positional arguments passed into `func`.
776-
kwargs : dict, optional
776+
**kwargs : dict, optional
777777
A dictionary of keyword arguments passed into `func`.
778778
779779
Returns

0 commit comments

Comments
 (0)