We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 476e2f2 commit 47ccb37Copy full SHA for 47ccb37
src/napari_matplotlib/tests/test_histogram.py
@@ -39,7 +39,7 @@ def test_feature_histogram(make_napari_viewer):
39
import numpy as np
40
41
n_points = 1000
42
- random_points = np.random.random((n_points,3))*10
+ random_points = np.random.random((n_points, 3)) * 10
43
feature1 = np.random.random(n_points)
44
feature2 = np.random.normal(size=n_points)
45
@@ -61,7 +61,7 @@ def test_feature_histogram(make_napari_viewer):
61
widget._set_axis_keys('feature2')
62
assert_figures_not_equal(widget.figure, fig1)
63
64
- #check whether selecting a different layer produces the same plot
+ # check whether selecting a different layer produces the same plot
65
viewer.layers.selection.clear()
66
viewer.layers.selection.add(viewer.layers[1])
67
assert_figures_equal(widget.figure, fig1)
0 commit comments