Skip to content

Commit 7f38092

Browse files
tcloseeffigies
andauthored
Update pydra/utils/typing.py
Co-authored-by: Chris Markiewicz <[email protected]>
1 parent a36be3e commit 7f38092

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pydra/utils/typing.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -421,10 +421,6 @@ def check_tuple(tp_args, pattern_args):
421421
for arg in tp_args:
422422
expand_and_check(arg, pattern_args[0])
423423
return
424-
# elif tp_args[-1] is Ellipsis:
425-
# for pattern_arg in pattern_args:
426-
# expand_and_check(tp_args[0], pattern_arg)
427-
# return
428424
if len(tp_args) != len(pattern_args):
429425
raise TypeError(
430426
f"Wrong number of type arguments in tuple {tp_args} compared to pattern "

0 commit comments

Comments
 (0)