Inspectopedia 2025.2 Help

Overloads in regular Python files

Reports cases when overloads in regular Python files are placed after the implementation or when their signatures are not compatible with the implementation.

Example:

from typing import overload @overload def foo(p1, p2): # Overload signature is not compatible with the implementation pass @overload def foo(p1): # Overload signature is not compatible with the implementation pass def foo(p1, p2, p3): print(p1, p2, p3)

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.

PyOverloads
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

Inspection ID: PyOverloadsInspection

Suppressing Inspection

You can suppress this inspection by placing the following comment marker before the code fragment where you no longer want messages from this inspection to appear:

//noinspection PyOverloads

More detailed instructions as well as other ways and options that you have can be found in the product documentation:

Last modified: 18 September 2025