Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUGFIX] Catch None in image feature columns #5626

Merged
merged 3 commits into from
Oct 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions argilla/src/argilla/_helpers/_media.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,20 @@
import io
import warnings
from pathlib import Path
from typing import Union
from typing import Union, Optional

from PIL import Image


def pil_to_data_uri(image_object: "Image") -> str:
def pil_to_data_uri(image_object: Optional["Image"]) -> Optional[str]:
"""Convert a PIL image to a base64 data URI string.
Parameters:
image_object (Image): The PIL image to convert to a base64 data URI.
Returns:
str: The data URI string.
"""
if image_object is None:
frascuchon marked this conversation as resolved.
Show resolved Hide resolved
return None
if not isinstance(image_object, Image.Image):
raise ValueError("The image_object must be a PIL Image object.")

Expand Down
Loading