Skip to content

Commit

Permalink
removed unnecessary not-coercible item
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Sep 25, 2023
1 parent 35b9f81 commit 1c60b14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydra/utils/tests/test_typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def test_type_check_nested8():
with pytest.raises(TypeError, match="explicitly excluded"):
TypeParser(
ty.Tuple[int, ...],
not_coercible=[(ty.Sequence, ty.Tuple), (ty.Sequence, ty.List)],
not_coercible=[(ty.Sequence, ty.Tuple)],
)(lz(ty.List[float]))


Expand Down

0 comments on commit 1c60b14

Please sign in to comment.