Skip to content

Commit 6dcb154

Browse files
committed
Add signposting between base classes
1 parent 54f7f90 commit 6dcb154

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/napari_matplotlib/base.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ class BaseNapariMPLWidget(QWidget):
2929
are customised to match the visual style of the main napari window.
3030
It is not responsible for creating any Axes, because different
3131
widgets may want to implement different subplot layouts.
32+
33+
See Also
34+
--------
35+
NapariMPLWidget : A child class that also contains helpful attributes and
36+
methods for working with napari layers.
3237
"""
3338

3439
def __init__(
@@ -121,6 +126,11 @@ class NapariMPLWidget(BaseNapariMPLWidget):
121126
Main napari viewer.
122127
layers : `list`
123128
List of currently selected napari layers.
129+
130+
See Also
131+
--------
132+
MPLWidget : The parent class of this widget. Contains helpful methods
133+
for creating and working with the Matplotlib figure and any axes.
124134
"""
125135

126136
def __init__(

0 commit comments

Comments
 (0)