[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2024-04-13 00:00:18 +00:00
parent 72ad6dc953
commit f4cd1ba0d6
813 changed files with 66015 additions and 58839 deletions

View file

@ -1,10 +1,13 @@
from __future__ import annotations
import sys
from typing import List, Optional
from typing import List
from typing import Optional
from pip._internal.cli.main import main
def _wrapper(args: Optional[List[str]] = None) -> int:
def _wrapper(args: list[str] | None = None) -> int:
"""Central wrapper for all old entrypoints.
Historically pip has had several entrypoints defined. Because of issues
@ -17,11 +20,11 @@ def _wrapper(args: Optional[List[str]] = None) -> int:
our old entrypoints as wrappers for the current one.
"""
sys.stderr.write(
"WARNING: pip is being invoked by an old script wrapper. This will "
"fail in a future version of pip.\n"
"Please see https://github.com/pypa/pip/issues/5599 for advice on "
"fixing the underlying issue.\n"
'WARNING: pip is being invoked by an old script wrapper. This will '
'fail in a future version of pip.\n'
'Please see https://github.com/pypa/pip/issues/5599 for advice on '
'fixing the underlying issue.\n'
"To avoid this problem you can invoke Python with '-m pip' instead of "
"running pip directly.\n"
'running pip directly.\n',
)
return main(args)