Skip to content

Commit fdbcdbe

Browse files
committed
Debugging
1 parent 20954e6 commit fdbcdbe

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: src/napari_matplotlib/base.py

+4
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,10 @@ def _valid_layer_selection(self) -> bool:
229229
"""
230230
Return `True` if layer selection is valid.
231231
"""
232+
print(f"{self.n_selected_layers=}")
233+
print(f"{self.n_layers_input=}")
234+
print(f"{self.layers=}")
235+
print(f"{self.input_layer_types=}")
232236
return self.n_selected_layers in self.n_layers_input and all(
233237
isinstance(layer, self.input_layer_types) for layer in self.layers
234238
)

0 commit comments

Comments
 (0)