fix(pre_commit): 🎨 auto format pre-commit hooks

This commit is contained in:
pre-commit-ci[bot] 2024-05-13 10:25:46 +00:00
parent 59b273ba87
commit cccacab621
1 changed files with 2 additions and 4 deletions

View File

@ -60,8 +60,7 @@ def group_coco_annotations_by_image_id(
def coco_annotations_to_masks(
image_annotations: List[dict],
resolution_wh: Tuple[int, int]
image_annotations: List[dict], resolution_wh: Tuple[int, int]
) -> npt.NDArray[np.bool_]:
return np.array(
[
@ -98,8 +97,7 @@ def coco_annotations_to_detections(
if with_masks:
mask = coco_annotations_to_masks(
image_annotations=image_annotations,
resolution_wh=resolution_wh
image_annotations=image_annotations, resolution_wh=resolution_wh
)
return Detections(
class_id=np.asarray(class_ids, dtype=int), xyxy=xyxy, mask=mask