mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
14 lines
232 B
Python
14 lines
232 B
Python
|
from autosummary_dummy_module import Foo
|
||
|
|
||
|
|
||
|
class InheritedAttrClass(Foo):
|
||
|
|
||
|
def __init__(self):
|
||
|
#: other docstring
|
||
|
self.subclassattr = "subclassattr"
|
||
|
|
||
|
super().__init__()
|
||
|
|
||
|
|
||
|
__all__ = ["InheritedAttrClass"]
|