Skip to content

Commit

Permalink
Changes following review
Browse files Browse the repository at this point in the history
  • Loading branch information
cbornet committed Jan 25, 2025
1 parent 9614d5f commit d0358e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/core/tests/unit_tests/test_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -2206,7 +2206,7 @@ class Foo(BaseModelV2):
)

@tool(args_schema=Foo)
def foo(x: list[int]) -> list[int]:
def foo(x) -> list[int]: # type: ignore[no-untyped-def] # noqa: ANN001
"""Foo."""
return x

Expand Down

0 comments on commit d0358e9

Please sign in to comment.