Skip to content

Commit f850eee

Browse files
author
bmartinn
committed
mypy
1 parent 95c8e29 commit f850eee

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pip/_internal/req/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ def install_given_reqs(
6060
)
6161

6262
# pre allocate installed package names
63-
installed = [None] * len(to_install) # type: ignore
63+
installed = [None] * len(to_install) # type: List[Any]
64+
6465
install_args = [install_options, global_options, args, kwargs]
6566

6667
if Pool is not None:

0 commit comments

Comments
 (0)