Inspectopedia Help

Problematic nesting of decorators

Reports problems with nesting decorators. The inspection highlights the cases when classmethod or staticmethod is applied before another decorator.

Example:

def innocent(f): return f class A: @innocent # Decorator will not receive a callable it may expect @classmethod def f2(cls): pass @innocent # Decorator will not receive a callable it may expect @staticmethod def f1(): pass

As a quick-fix, the IDE offers to remove the decorator.

Inspection Details

By default bundled with:

DataSpell 2024.1, IntelliJ IDEA 2024.1, PyCharm 2024.1, Qodana for JVM 2024.1,

Can be installed with plugin:

Python Community Edition, 241.SNAPSHOT

Last modified: 29 April 2024