Skip to content

Commit d544af8

Browse files
fix(pre_commit): 🎨 auto format pre-commit hooks
1 parent 95835b2 commit d544af8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

maestro/postprocessing/mask.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ def compute_mask_iou_vectorized(masks: np.ndarray) -> np.ndarray:
3434
"""
3535
if np.any(masks.sum(axis=(1, 2)) == 0):
3636
raise ValueError(
37-
"One or more masks are empty. Please filter out empty masks before using "
38-
"`compute_iou_vectorized` function."
37+
"One or more masks are empty. Please filter out empty masks before using `compute_iou_vectorized` function."
3938
)
4039

4140
masks_bool = masks.astype(bool)

0 commit comments

Comments
 (0)