From 86a22b54580f5d32e0277d24d5fa9a43dae5ed02 Mon Sep 17 00:00:00 2001 From: Zhiqiang Wang Date: Thu, 10 Mar 2022 14:46:46 +0800 Subject: [PATCH] Apply pre-commit --- test/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_utils.py b/test/test_utils.py index 106509a1..264c5f2d 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -78,7 +78,7 @@ def test_load_from_ultralytics_voc(arch, version, upstream_version, hash_prefix) assert isinstance(predictions[0]["boxes"], Tensor) assert isinstance(predictions[0]["labels"], Tensor) assert isinstance(predictions[0]["scores"], Tensor) - assert len(predictions[0]['labels']) == 4 + assert len(predictions[0]["labels"]) == 4 def test_read_image_to_tensor():