main.py 340 B

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