]>
Commit | Line | Data |
---|---|---|
53e6db90 DC |
1 | from typing import List, Optional |
2 | ||
3 | ||
4 | def main(args: Optional[List[str]] = None) -> int: | |
5 | """This is preserved for old console scripts that may still be referencing | |
6 | it. | |
7 | ||
8 | For additional details, see https://github.com/pypa/pip/issues/7498. | |
9 | """ | |
10 | from pip._internal.utils.entrypoints import _wrapper | |
11 | ||
12 | return _wrapper(args) |