If I have the following code in 2 different files:
file1.py
class BaseClass(ABC):
def __init__(self, name):
self.name = name
file2.py
class ClassExample(BaseClass):
"""Class Exmaple.
Attributes:
name: Name
"""
def __init__(self, name):
super().__init__(name)
It gives error because it says that in ClassExample the property name does not exist. I imagine that this will also happen if you document methods in some way.
If I have the following code in 2 different files: file1.py
file2.py
It gives error because it says that in ClassExample the property name does not exist. I imagine that this will also happen if you document methods in some way.