Skip to content

Commit 4c00389

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent ae0422a commit 4c00389

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pydra/utils/tests/test_typing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1044,11 +1044,11 @@ def test_type_is_instance11a():
10441044
[
10451045
(MultiInputObj[str], "a", ["a"]),
10461046
(MultiInputObj[str], ["a"], ["a"]),
1047-
(MultiInputObj[ty.List[str]], ["a"], [["a"]]),
1047+
(MultiInputObj[ty.List[str]], ["a"], [["a"]]),
10481048
(MultiInputObj[ty.Union[int, ty.List[str]]], ["a"], [["a"]]),
10491049
(MultiInputObj[ty.Union[int, ty.List[str]]], [["a"]], [["a"]]),
10501050
(MultiInputObj[ty.Union[int, ty.List[str]]], [1], [1]),
1051-
]
1051+
],
10521052
)
10531053
def test_multi_input_obj_coerce(typ, obj, result):
10541054
assert TypeParser(typ)(obj) == result

0 commit comments

Comments
 (0)