Skip to content

Commit b76368d

Browse files
authored
reformat (#308)
1 parent 4db7f3f commit b76368d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sahi/scripts/coco_error_analysis.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,9 @@ def _analyze_results(
298298
catIds = cocoGt.getCatIds()
299299
recThrs = cocoEval.params.recThrs
300300
with Pool(processes=48) as pool:
301-
args = [(k, cocoDt, cocoGt, catId, iou_type, areas, max_detections, COCOeval) for k, catId in enumerate(catIds)]
301+
args = [
302+
(k, cocoDt, cocoGt, catId, iou_type, areas, max_detections, COCOeval) for k, catId in enumerate(catIds)
303+
]
302304
analyze_results = pool.starmap(_analyze_individual_category, args)
303305
for k, catId in enumerate(catIds):
304306
nm = cocoGt.loadCats(catId)[0]

0 commit comments

Comments
 (0)