empty-method-without-abstract-decorator (B027)
Added in v0.0.118 · Related issues · View source
Derived from the flake8-bugbear linter.
What it does
Checks for empty methods in abstract base classes without an abstract decorator.
Why is this bad?
Empty methods in abstract base classes without an abstract decorator may be
be indicative of a mistake. If the method is meant to be abstract, add an
@abstractmethod decorator to the method.
Example
Use instead: