summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-ext-autosummary/autosummary_dummy_inherited_module.py
blob: 2b3d2da84cae0f829d965634b8a1def106b1cda2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from autosummary_dummy_module import Foo


class InheritedAttrClass(Foo):

    def __init__(self):
        #: other docstring
        self.subclassattr = "subclassattr"

        super().__init__()


__all__ = ["InheritedAttrClass"]