We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4dac25 commit ff7348fCopy full SHA for ff7348f
src/plopp/core/typing.py
@@ -7,6 +7,7 @@
7
8
import scipp as sc
9
from numpy import ndarray
10
+from scipp.typing import VariableLike
11
12
from .node import Node
13
@@ -21,7 +22,7 @@ class VisibleDeprecationWarning(UserWarning):
21
22
23
VisibleDeprecationWarning.__module__ = 'plopp'
24
-Plottable = Union[sc.VariableLike, ndarray, Node]
25
+Plottable = Union[VariableLike, ndarray, Node]
26
27
PlottableMulti = Union[Plottable, Dict[str, Plottable]]
28
src/plopp/widgets/drawing.py
@@ -6,8 +6,8 @@
6
-from ..backends.protocols import FigureLike
from ..core import Node, node
+from ..core.typing import FigureLike
from .tools import ToggleTool
0 commit comments