fix: remove extraneous f-prefix in ValueError message

This commit is contained in:
Yuneng Jiang 2026-04-22 18:08:17 -07:00
parent 375bf4d7d6
commit 42342d35fd
No known key found for this signature in database

View file

@ -213,7 +213,7 @@ class BlackForestLabsImageEditConfig(BaseImageEditConfig):
return response.content
else:
raise ValueError(
f"Unsupported image input: plain string values that are not URLs are not accepted. "
"Unsupported image input: plain string values that are not URLs are not accepted. "
"Provide image bytes or a file-like object."
)
elif hasattr(image, "read"):