We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 545f413 commit 4600becCopy full SHA for 4600bec
src/codeinterpreterapi/schema.py
@@ -64,7 +64,7 @@ def get_image(self) -> Any:
64
65
# Convert image to RGB if it's not
66
if img.mode not in ("RGB", "L"): # L is for grayscale images
67
- img = img.convert("RGB")
+ img = img.convert("RGB") # type: ignore
68
69
return img
70
0 commit comments