We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
no-self-use
PLR6301
super
from typing_extensions import override class A: def foo(self): ... class B(A): @override def foo(self): ... def bar(self): # error: PLR6301 super().foo()
in this case the method cannot be converted to a static method, otherwise it would break the super call
The text was updated successfully, but these errors were encountered:
super()
I can work on this one
Sorry, something went wrong.
Thanks!
Fix false positive in PLR6301 (#7933)
e261eb7
## Summary Don't report a diagnostic if the method contains a `super()` call. Closes #6961 ## Test Plan `cargo test`
LaBatata101
Successfully merging a pull request may close this issue.
in this case the method cannot be converted to a static method, otherwise it would break the
super
callThe text was updated successfully, but these errors were encountered: