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
Hi,
This might be related to #42
but do we know if there's a way to handle attributes with multiple lines?
such as the below
classTestClass(object):
"""Test Class. Attributes: value1: This is a test. value2: This is a 2nd test. value3: This is a multiple line attribute This is a second line """
The text was updated successfully, but these errors were encountered:
classTestClass(object):
"""Test Class. Attributes: value1: This is a test. value2: This is a 2nd test. """def__init__(self):
self.value1='some value'self.value2='some value'## @property value3# This is a multiple line attribute. <br># This is a second line.self.value3='some value'
Hi,
This might be related to #42
but do we know if there's a way to handle attributes with multiple lines?
such as the below
The text was updated successfully, but these errors were encountered: