You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classClassExample(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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: