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.

__init__.py 357B

12345678910111213
  1. from typing import List, Optional
  2. __version__ = "23.2.1"
  3. def main(args: Optional[List[str]] = None) -> int:
  4. """This is an internal API only meant for use by pip's own console scripts.
  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)