Skip to main content

Replace Deprecated `abc` Decorators

pixee:python/fix-deprecated-abstractproperty​

ImportanceReview GuidanceRequires Scanning Tool
LowMerge Without ReviewNo

The @abstractproperty, @abstractclassmethod, and @abstractstaticmethod decorators from abc has been deprecated since Python 3.3. This is because it's possible to use @property, @classmethod, and @staticmethod in combination with @abstractmethod.

Our changes look like the following:

 import abc

class Foo:
- @abc.abstractproperty
+ @property
+ @abc.abstractmethod
def bar():
...

and similarly for @abstractclassmethod and @abstractstaticmethod.

If you have feedback on this codemod, please let us know!

F.A.Q.​

Why is this codemod marked as Merge Without Review?​

This change fixes deprecated uses and is safe.

Codemod Settings​

N/A

References​