-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
STYLE: Extending codespell to pandas/tests Part 2 #40332
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
STYLE: Extending codespell to pandas/tests Part 2 #40332
Conversation
01-vyom
commented
Mar 9, 2021
- xref CI/STYLE extend codespell beyond pandas/core #38802
- tests added / passed
- Ensure all linting tests pass, see here for how to run them
- whatsnew entry
@@ -433,13 +433,13 @@ def test_setitem_intervals(self): | |||
assert is_categorical_dtype(df["D"].dtype) | |||
assert is_interval_dtype(df["D"].cat.categories) | |||
|
|||
# Thes goes through the Series constructor and so get inferred back | |||
# These goes through the Series constructor and so get inferred back |
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.
"These go" most likely?
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.
lgtm ex @dsaxton comment
doesn't this have to turn on this in the codespell config? (or is this a precursor) |
Yes @jreback, by removing the exclude from the codespell config, we get 68 file changes so we decided to split those changes into 3 PRs and include the codespell config change in the final PR in-order to pass the pre-commit for all the PRs. More Info here: #40320 |
Made all the necessary changes. |
Thanks @01-vyom ! |
* STYLE: Extending codespell to pandas/tests part 2 * DOC: small change in test_setitem.py