Skip to content

Commit 0882031

Browse files
committed
GH27976: separate *args and **kwargs onto different lines
- place *args and **kwargs on different lines - provide both *args and **kwargs with new descriptions
1 parent 598b8d7 commit 0882031

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Diff for: pandas/io/formats/style.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -1350,8 +1350,11 @@ def pipe(self, func, *args, **kwargs):
13501350
Function to apply to the Styler. Alternatively, a
13511351
``(callable, keyword)`` tuple where ``keyword`` is a string
13521352
indicating the keyword of ``callable`` that expects the Styler.
1353-
*args, **kwargs :
1354-
Arguments passed to `func`.
1353+
*args : iterable, optional
1354+
Positional arguments passed into ``func``.
1355+
**kwargs : dict, optional
1356+
A dictionary of keyword arguments passed into ``func``.
1357+
13551358
13561359
Returns
13571360
-------

0 commit comments

Comments
 (0)