Skip to content

Commit 5c07a1a

Browse files
Considered ruff errors
1 parent ec6559d commit 5c07a1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/kd_tree/tests/test_kdtree.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
@pytest.mark.parametrize(
11-
"num_points, cube_size, num_dimensions, depth, expected_result",
11+
("num_points", "cube_size", "num_dimensions", "depth", "expected_result"),
1212
[
1313
(0, 10.0, 2, 0, None), # Empty points list
1414
(10, 10.0, 2, 2, KDNode), # Depth = 2, 2D points

0 commit comments

Comments
 (0)