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
classMyBaseException(Exception):
def__init__(self):
self.my_message: str="This is my message""""The message."""super().__init__(self.my_message)
classMyException(MyBaseException):
pass
MyException
is documented as having not attributes, but it should document the inheritedmy_message
attribute.The text was updated successfully, but these errors were encountered: