We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4fa6f65 + 8d5fa4a commit 308134bCopy full SHA for 308134b
src/napari_matplotlib/base.py
@@ -1,6 +1,6 @@
1
import os
2
from pathlib import Path
3
-from typing import Tuple
+from typing import List, Tuple
4
5
import matplotlib as mpl
6
import napari
@@ -67,6 +67,7 @@ def __init__(self, napari_viewer: napari.viewer.Viewer):
67
self.layout().addWidget(self.canvas)
68
69
self.setup_callbacks()
70
+ self.layers: List[napari.layers.Layer] = []
71
72
# Accept any number of input layers by default
73
n_layers_input = Interval(None, None)
0 commit comments