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)
Inspection Details | |
---|---|
Available in: | DataSpell 2023.3, PyCharm 2023.3 |
Plugin: | Python Community Edition, 233.SNAPSHOT |
Last modified: 13 July 2023