Skip to content

Commit 47ccb37

Browse files
committed
codestyle
1 parent 476e2f2 commit 47ccb37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/napari_matplotlib/tests/test_histogram.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def test_feature_histogram(make_napari_viewer):
3939
import numpy as np
4040

4141
n_points = 1000
42-
random_points = np.random.random((n_points,3))*10
42+
random_points = np.random.random((n_points, 3)) * 10
4343
feature1 = np.random.random(n_points)
4444
feature2 = np.random.normal(size=n_points)
4545

@@ -61,7 +61,7 @@ def test_feature_histogram(make_napari_viewer):
6161
widget._set_axis_keys('feature2')
6262
assert_figures_not_equal(widget.figure, fig1)
6363

64-
#check whether selecting a different layer produces the same plot
64+
# check whether selecting a different layer produces the same plot
6565
viewer.layers.selection.clear()
6666
viewer.layers.selection.add(viewer.layers[1])
6767
assert_figures_equal(widget.figure, fig1)

0 commit comments

Comments
 (0)