diff --git a/rerun_py/rerun_sdk/rerun/archetypes/image_ext.py b/rerun_py/rerun_sdk/rerun/archetypes/image_ext.py index 3b6d4ab98161..8c31e41bfe4f 100644 --- a/rerun_py/rerun_sdk/rerun/archetypes/image_ext.py +++ b/rerun_py/rerun_sdk/rerun/archetypes/image_ext.py @@ -48,7 +48,7 @@ def _to_numpy(tensor: ImageLike) -> npt.NDArray[Any]: try: # Make available to the cpu - return tensor.numpy(force=True) # type: ignore[union-attr] + return tensor.numpy(force=True) # type: ignore[union-attr, no-any-return] except AttributeError: return np.array(tensor, copy=False)