Given these two classes:
class MyClass(ABC):
@abstractmethod
def my_method(self, my_parameter: str):
pass
class MySecondClass(MyClass):
def my_method(self, my_parameter):
pass
Does my_parameter
in my_method
of MySecondClass
have an inferred type of Any
or str
based on PEP 484? I couldn't find an example detailing the above within the linked document.