Skip to content

Commit

Permalink
fix requirement type annotation missing
Browse files Browse the repository at this point in the history
  • Loading branch information
savarin committed Feb 6, 2024
1 parent 4816502 commit f046542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_distil.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def test_must_have_hint() -> None:
with pytest.raises(AssertionError):

@instructions.distil
def test_func(x: int):
def test_func(x: int): # type: ignore[no-untyped-def]
return SimpleModel(data=x)


Expand Down

0 comments on commit f046542

Please sign in to comment.