Skip to content

Commit 0fcbb82

Browse files
committed
Fix linter
1 parent 74311d4 commit 0fcbb82

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/python/unit/results/test_det_result.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99

1010
def test_cls_result():
1111
tst_vector = np.array([1, 2, 3, 4], dtype=np.float32)
12-
det_result = DetectionResult(tst_vector, tst_vector, tst_vector, ["a"], tst_vector, tst_vector)
12+
det_result = DetectionResult(
13+
tst_vector, tst_vector, tst_vector, ["a"], tst_vector, tst_vector
14+
)
1315

1416
assert det_result.labels.dtype == np.int32
1517
assert len(det_result.label_names) == 1

0 commit comments

Comments
 (0)