1class Foo: 2 def __init__(self): 3 self.no_docstring = 42 4 self.with_docstring = 43 5 """This is an attribute docstring."""
2class Foo: 3 def __init__(self): 4 self.no_docstring = 42 5 self.with_docstring = 43 6 """This is an attribute docstring."""
This is an attribute docstring.