Skip to content

Commit 00b03f0

Browse files
committed
DOC: Remove return statement brackets
1 parent 402b583 commit 00b03f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/source/groupby.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1303,7 +1303,7 @@ arbitrary function, for example:
13031303
.. ipython:: python
13041304
13051305
def mean(groupby):
1306-
return(groupby.mean())
1306+
return groupby.mean()
13071307
13081308
df.groupby(['Store', 'Product']).pipe(mean)
13091309

0 commit comments

Comments
 (0)