-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
CLN: rename private functions used across modules #36049
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @jbrockmendel lgtm pending green
pandas/tests/plotting/common.py
Outdated
|
||
""" | ||
This is a common base class used for various plotting tests | ||
""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does this docstring belong inside the following class
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, updated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typos, merge on green.
pandas/tests/plotting/test_misc.py
Outdated
@@ -349,31 +349,31 @@ def test_subplot_titles(self, iris): | |||
title_list = [ax.get_title() for sublist in plot for ax in sublist] | |||
assert title_list == title[:3] + [""] | |||
|
|||
def test_get_standard_colors_random_seed(self): | |||
def testget_standard_colors_random_seed(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
test_
pandas/tests/plotting/test_misc.py
Outdated
assert color1 == color2 | ||
|
||
def test_get_standard_colors_default_num_colors(self): | ||
from pandas.plotting._matplotlib.style import _get_standard_colors | ||
def testget_standard_colors_default_num_colors(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
test_
pandas/tests/plotting/test_misc.py
Outdated
@@ -394,17 +394,17 @@ def test_plot_single_color(self): | |||
colors = [rect.get_facecolor() for rect in ax.get_children()[0:3]] | |||
assert all(color == colors[0] for color in colors) | |||
|
|||
def test_get_standard_colors_no_appending(self): | |||
def testget_standard_colors_no_appending(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
test_
No description provided.