diff --git a/supervision/utils/image.py b/supervision/utils/image.py index 0bd2dbaa..9bc9c68b 100644 --- a/supervision/utils/image.py +++ b/supervision/utils/image.py @@ -785,4 +785,4 @@ def _merge_tiles_elements( def _generate_color_image( shape: Tuple[int, int], color: Tuple[int, int, int] ) -> np.ndarray: - return np.ones(shape[::-1] + (3,), dtype=np.uint8) * color + return np.ones(shape[::-1] + (3,), dtype=np.uint8) * color # noqa RUF005