Replies: 1 comment 1 reply
-
Is this the same as #12861 ? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There B024 that warns about ABC derivatives without abstract methods.
On the other hand, there is no check for classes, not derived from ABC, that have abstract methods. This is not considered as an issue in python itself and
pyright
doesn't want to raise an error for this too.While it is not an error, in my case it led to some issues and I would like some tool to at least warn me about this inconsistency. And by. "some tool" I mean
ruff
:)Saying that, I have a prototype for this check based on existing bugbear checks. And I would love to contribute to
ruff
by implementing this check, but:ruff
?I would also need some help and guidance with Rust, this is a new language for me.
Beta Was this translation helpful? Give feedback.
All reactions