Skip to content

Commit 0e9588e

Browse files
committed
Address code review
1 parent 4477f79 commit 0e9588e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1111,7 +1111,7 @@ def _paramspec_prepare_subst(self, alias, args):
11111111
elif isinstance(args[i], list):
11121112
args = (*args[:i], tuple(args[i]), *args[i+1:])
11131113
else:
1114-
args = (*args[:i], args[i], *args[i + 1:])
1114+
args = tuple(args)
11151115
return args
11161116

11171117

0 commit comments

Comments
 (0)