Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.py 340B

1 year ago
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)