Skip to content

Commit

Permalink
fix typing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Nov 12, 2024
1 parent 3d50a0b commit 034eb99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/typed_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def run_with_override() -> None:
typed_agent.run_sync('testing', deps=MyDeps(3, 4))

# invalid deps
with typed_agent.override_deps(123): # type: ignore[misc]
with typed_agent.override_deps(123): # type: ignore[arg-type]
typed_agent.run_sync('testing', deps=MyDeps(3, 4))


Expand Down

0 comments on commit 034eb99

Please sign in to comment.