Skip to content

Commit 266b517

Browse files
committed
make linters happy
1 parent 1512544 commit 266b517

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/napari_matplotlib/histogram.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def draw(self) -> None:
5555
# whole cube into memory.
5656
if data.dtype.kind == "i":
5757
# Make sure integer data types have integer sized bins
58-
step = (np.max(data) - np.min(data)) // 100
58+
step = (np.max(data) - np.min(data)) // 100
5959
bins = np.arange(np.min(data), np.max(data) + step, step)
6060
else:
6161
bins = np.linspace(np.min(data), np.max(data), 100)

0 commit comments

Comments
 (0)