Skip to content

Commit 957a0d7

Browse files
committed
removed unnecessary not-coercible item
1 parent 0cafc6e commit 957a0d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydra/utils/tests/test_typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def test_type_check_nested8():
163163
with pytest.raises(TypeError, match="explicitly excluded"):
164164
TypeParser(
165165
ty.Tuple[int, ...],
166-
not_coercible=[(ty.Sequence, ty.Tuple), (ty.Sequence, ty.List)],
166+
not_coercible=[(ty.Sequence, ty.Tuple)],
167167
)(lz(ty.List[float]))
168168

169169

0 commit comments

Comments
 (0)