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 21, 2025
1 parent bc8e967 commit 454b292
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 @@ -2186,7 +2186,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 454b292

Please sign in to comment.