-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
fix pylint bad-super-call #48896
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
fix pylint bad-super-call #48896
Conversation
soumilbaldota
commented
Sep 30, 2022
- updates STYLE fix pylint issues #48855
- Tests added and passed if fixing a bug or adding a new feature
- All code checks passed.
Co-authored-by: Marco Edward Gorelli <[email protected]>
…/pandas into bad-super-call-fix
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.
Looks good to me, thanks @soumilbaldota
@@ -159,7 +159,7 @@ class TestConstructors(BaseJSON, base.BaseConstructorsTests): | |||
@pytest.mark.xfail(reason="not implemented constructor from dtype") | |||
def test_from_dtype(self, data): | |||
# construct from our dtype & string dtype | |||
super(self).test_from_dtype(data) |
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.
this was added in #46370 - I guess the error wasn't caught because the test is xfailed anyway?
cc @mroeschke in case you remember
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.
Yeah before #46370, this test wasnt running I guess since there was a pass
. Thanks for this cleanup
Thanks @soumilbaldota |
* fix pylint bad-super-call * fix black pre commit * Update pyproject.toml Co-authored-by: Marco Edward Gorelli <[email protected]> * change super() to df.copy() Co-authored-by: Marco Edward Gorelli <[email protected]>