Skip to content

Commit 8481a4b

Browse files
committed
Fix PEP 8: E225 missing whitespace around operator
1 parent 0e3845f commit 8481a4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python_bindings/tests/bindings_test_labels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def testRandomSelf(self):
8080

8181
# Query the elements for themselves and measure recall:
8282
labels, distances = p.knn_query(data, k=1)
83-
items=p.get_items(labels)
83+
items = p.get_items(labels)
8484

8585
# Check the recall:
8686
self.assertAlmostEqual(np.mean(labels.reshape(-1) == np.arange(len(data))), 1.0, 3)

0 commit comments

Comments
 (0)