-
-
Notifications
You must be signed in to change notification settings - Fork 19.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
simonjayhawkins
left a comment
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
jreback
left a comment
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
| 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
|
|
||
| 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
| 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.