Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
keewenaw
GitHub Repository: keewenaw/ethereum-wallet-cracker
Path: blob/main/test/lib/python3.9/site-packages/pip/_internal/main.py
4799 views
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)
13
14