'Python typing.overload and subclass implementation removes Pycharm code completion

from typing import overload 

class Foo:
    @overload
    def a(self, value: int):
       ...
    @overload
    def a(self, value: str):
       ...
    def a(self, value):
        print(value)

This correctly shows the overloaded signature on the parent class Foo:

enter image description here

If we subclass Foo and do not override the implementation function, the overloaded type hints are visible as expected:

class Bar(Foo):
    pass 

The type hints are inherited and show up as expected:

enter image description here

However, if we subclass Foo and override the implementation function, the overloaded type hints are lost:

class Bar(Foo):
    def a(self, value):
        print(value)

enter image description here


Is there any way to preserve the overloaded type hints in a subclass that overrides the implementing method, short of duplicating the overloaded type hints in the subclass?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source