Unresolved references
Reports references in your code that cannot be resolved.
In a dynamically typed language, this is possible in a limited number of cases.
If a reference type is unknown, then its attributes are not highlighted as unresolved even if you know that they should be:
def print_string(s):
print(s.abc())
In this code fragment s
is always a string and abc
should be highlighted as unresolved. However, s
type is inferred as Any
and no warning is reported.
The IDE provides quick-fix actions to add missing references on-the-fly.
- 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.
PyUnresolvedReferences
Here you can find the description of settings available for the Unresolved references inspection, and the reference of their default values.
Inspection Details | |
---|---|
By default bundled with: | CLion 2024.3, IntelliJ IDEA 2024.3, PyCharm 2024.3, Qodana for JVM 2024.3, |
Can be installed with plugin: | Python Community Edition, 243.23126 |
Thanks for your feedback!