Skip to content

Commit e84958d

Browse files
committed
Remove print statements
1 parent 804934c commit e84958d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/napari_matplotlib/histogram.py

-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ def draw(self) -> None:
3333
Clear the axes and histogram the currently selected layer/slice.
3434
"""
3535
layer = self.layers[0]
36-
print(layer.data.shape)
3736

3837
if layer.data.ndim - layer.rgb == 3:
3938
# 3D data, can be single channel or RGB
@@ -47,7 +46,6 @@ def draw(self) -> None:
4746
# Important to calculate bins after slicing 3D data, to avoid reading
4847
# whole cube into memory.
4948
bins = np.linspace(np.min(data), np.max(data), 100)
50-
print(bins)
5149

5250
if layer.rgb:
5351
# Histogram RGB channels independently

0 commit comments

Comments
 (0)