File tree Expand file tree Collapse file tree 5 files changed +723
-665
lines changed Expand file tree Collapse file tree 5 files changed +723
-665
lines changed Original file line number Diff line number Diff line change 48
48
# directories to ignore when looking for source files.
49
49
exclude_patterns = ["_build" ]
50
50
51
- autodoc_default_options = {"members" : True , "inherited-members" : True }
51
+ # Hide class prefix in right sidebar.
52
+ toc_object_entries_show_parents = "hide"
53
+
54
+ # Add any paths that contain templates here, relative to this directory.
55
+ templates_path = ["templates" ]
52
56
53
57
# generate autosummary even if no references
54
58
autosummary_generate = True
Original file line number Diff line number Diff line change
1
+ {{ objname | escape | underline(line="=") }}
2
+
3
+ .. currentmodule :: {{ module }}
4
+
5
+ .. autoclass :: {{ objname }}
6
+ :members:
7
+ :inherited-members:
8
+ :special-members: __call__
Original file line number Diff line number Diff line change
1
+ {{ objname | escape | underline(line="=") }}
2
+
3
+ .. currentmodule :: {{ module }}
4
+
5
+ .. autofunction :: {{ objname }}
You can’t perform that action at this time.
0 commit comments