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.

Locating this inspection

By ID

Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.

PyNestedDecoratorsInspection
Via Settings dialog

Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.

Settings or Preferences | Editor | Inspections | Python

Availability

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: 18 June 2024