We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_take_with_is_copy
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
This method is declared as final:
final
pandas/pandas/core/generic.py
Lines 3629 to 3630 in 526d52f
It's then overridden in series:
series
pandas/pandas/core/series.py
Line 866 in 526d52f
The reason mypy doesn't detect this failure is that the override in series in untyped, and so mypy doesn't check it
mypy
@jbrockmendel do you know which one is correct? Remove final or remove the override?
The text was updated successfully, but these errors were encountered:
i think remove the final
Sorry, something went wrong.
Hi, I'm interested in contributing. Could I help to solve this?
Successfully merging a pull request may close this issue.
This method is declared as
final
:pandas/pandas/core/generic.py
Lines 3629 to 3630 in 526d52f
It's then overridden in
series
:pandas/pandas/core/series.py
Line 866 in 526d52f
The reason
mypy
doesn't detect this failure is that the override inseries
in untyped, and somypy
doesn't check it@jbrockmendel do you know which one is correct? Remove
final
or remove the override?The text was updated successfully, but these errors were encountered: