flake8-bugbear icon indicating copy to clipboard operation
flake8-bugbear copied to clipboard

Enforce order of decorators combined with `@abstractmethod`

Open ghost opened this issue 3 years ago • 1 comments

When combining @abstractmethod with @property or @staticmethod, the latter must come first. This might be a good addition to this plugin.

ghost avatar Aug 26 '22 14:08 ghost

Sounds quite reasonable, especially if the error message in #281 will suggest using a combination instead of the deprecated @abstractproperty. See e.g. https://github.com/python/cpython/issues/60471 for discussion around why the wrong order is problematic.

jakkdl avatar Sep 14 '22 17:09 jakkdl