Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: fix RT02 errors in pd.io.formats.style #49968 #49983

Merged
merged 1 commit into from
Dec 5, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions pandas/io/formats/style.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def concat(self, other: Styler) -> Styler:

Returns
-------
self : Styler
Styler

Notes
-----
Expand Down Expand Up @@ -415,7 +415,7 @@ def set_tooltips(

Returns
-------
self : Styler
Styler

Notes
-----
Expand Down Expand Up @@ -1424,7 +1424,7 @@ def set_td_classes(self, classes: DataFrame) -> Styler:

Returns
-------
self : Styler
Styler

See Also
--------
Expand Down Expand Up @@ -1727,7 +1727,7 @@ def apply(

Returns
-------
self : Styler
Styler

See Also
--------
Expand Down Expand Up @@ -1844,7 +1844,7 @@ def apply_index(

Returns
-------
self : Styler
Styler

See Also
--------
Expand Down Expand Up @@ -1948,7 +1948,7 @@ def applymap(

Returns
-------
self : Styler
Styler

See Also
--------
Expand Down Expand Up @@ -2003,7 +2003,7 @@ def set_table_attributes(self, attributes: str) -> Styler:

Returns
-------
self : Styler
Styler

See Also
--------
Expand Down Expand Up @@ -2105,7 +2105,7 @@ def use(self, styles: dict[str, Any]) -> Styler:

Returns
-------
self : Styler
Styler

See Also
--------
Expand Down Expand Up @@ -2156,7 +2156,7 @@ def set_uuid(self, uuid: str) -> Styler:

Returns
-------
self : Styler
Styler

Notes
-----
Expand All @@ -2180,7 +2180,7 @@ def set_caption(self, caption: str | tuple) -> Styler:

Returns
-------
self : Styler
Styler
"""
msg = "`caption` must be either a string or 2-tuple of strings."
if isinstance(caption, tuple):
Expand Down Expand Up @@ -2218,7 +2218,7 @@ def set_sticky(

Returns
-------
self : Styler
Styler

Notes
-----
Expand Down Expand Up @@ -2379,7 +2379,7 @@ def set_table_styles(

Returns
-------
self : Styler
Styler

See Also
--------
Expand Down Expand Up @@ -2504,7 +2504,7 @@ def hide(

Returns
-------
self : Styler
Styler

Notes
-----
Expand Down Expand Up @@ -2748,7 +2748,7 @@ def background_gradient(

Returns
-------
self : Styler
Styler

See Also
--------
Expand Down Expand Up @@ -2881,7 +2881,7 @@ def set_properties(self, subset: Subset | None = None, **kwargs) -> Styler:

Returns
-------
self : Styler
Styler

Notes
-----
Expand Down Expand Up @@ -2978,7 +2978,7 @@ def bar( # pylint: disable=disallowed-name

Returns
-------
self : Styler
Styler

Notes
-----
Expand Down Expand Up @@ -3053,7 +3053,7 @@ def highlight_null(

Returns
-------
self : Styler
Styler

See Also
--------
Expand Down Expand Up @@ -3099,7 +3099,7 @@ def highlight_max(

Returns
-------
self : Styler
Styler

See Also
--------
Expand Down Expand Up @@ -3147,7 +3147,7 @@ def highlight_min(

Returns
-------
self : Styler
Styler

See Also
--------
Expand Down Expand Up @@ -3203,7 +3203,7 @@ def highlight_between(

Returns
-------
self : Styler
Styler

See Also
--------
Expand Down Expand Up @@ -3315,7 +3315,7 @@ def highlight_quantile(

Returns
-------
self : Styler
Styler

See Also
--------
Expand Down