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.