Skip to content

Commit 0a82629

Browse files
committed
lint fix
1 parent 1cb07b9 commit 0a82629

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/core/langchain_core/utils/function_calling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def _convert_any_typed_dicts_to_pydantic(
244244
else:
245245
inner_arg_type = arg_type
246246

247-
if get_origin(inner_arg_type) is Annotated: # type: ignore[comparison-overlap]
247+
if get_origin(inner_arg_type) is Annotated:
248248
annotated_args = get_args(inner_arg_type)
249249
new_arg_type = _convert_any_typed_dicts_to_pydantic(
250250
annotated_args[0], depth=depth + 1, visited=visited

0 commit comments

Comments
 (0)