main.py 351 B

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