Skip to content

Commit a9484af

Browse files
committed
Fix lint
1 parent bb62b5a commit a9484af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/core/langchain_core/messages/content_blocks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def convert_to_openai_data_block(block: dict) -> dict:
147147
raise ValueError(err)
148148
file["filename"] = block.get(
149149
"filename",
150-
_generate_fallback_filename(mime_type), # type: ignore[arg-type]
150+
_generate_fallback_filename(mime_type),
151151
)
152152
formatted_block = {"type": "file", "file": file}
153153
elif block["source_type"] == "id":

0 commit comments

Comments
 (0)