Skip to content

Commit

Permalink
Fixed docstring error with style.py, unknown parameter: {'text_color_…
Browse files Browse the repository at this point in the history
…threshold'} (#48055)

* fixed docstring error with style.py unknown paramter 'text_color_threshold'

* Fixed docstring error with style.py, unknown parameter: text_color_threshold

* Update style.py

reverted unneeded changes

* Update style.py

Revert unneeded changes
  • Loading branch information
joshuabello2550 authored Aug 18, 2022
1 parent 252ae05 commit 8819247
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions pandas/io/formats/style.py
Original file line number Diff line number Diff line change
Expand Up @@ -2986,7 +2986,10 @@ def _get_numeric_subset_default(self):
name="background",
alt="text",
image_prefix="bg",
text_threshold="",
text_threshold="""text_color_threshold : float or int\n
Luminance threshold for determining text color in [0, 1]. Facilitates text\n
visibility across varying background colors. All text is dark if 0, and\n
light if 1, defaults to 0.408.""",
)
@Substitution(subset=subset)
def background_gradient(
Expand Down Expand Up @@ -3025,11 +3028,7 @@ def background_gradient(
(``axis=1`` or ``'columns'``), or to the entire DataFrame at once
with ``axis=None``.
%(subset)s
text_color_threshold : float or int
{text_threshold}
Luminance threshold for determining text color in [0, 1]. Facilitates text
visibility across varying background colors. All text is dark if 0, and
light if 1, defaults to 0.408.
{text_threshold}
vmin : float, optional
Minimum data value that corresponds to colormap minimum value.
If not specified the minimum value of the data (or gmap) will be used.
Expand Down Expand Up @@ -3146,7 +3145,7 @@ def background_gradient(
name="text",
alt="background",
image_prefix="tg",
text_threshold="This argument is ignored (only used in `background_gradient`).",
text_threshold="",
)
def text_gradient(
self,
Expand Down

0 comments on commit 8819247

Please sign in to comment.