X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/de65741b8d49d78fa2675ef79b799cd35e92e7c1..e712e48e06420d9240ce95c81acfcf6f11d14c83:/src/black/parsing.py diff --git a/src/black/parsing.py b/src/black/parsing.py index eaa3c36..70ed99c 100644 --- a/src/black/parsing.py +++ b/src/black/parsing.py @@ -29,11 +29,9 @@ try: except ImportError: if sys.version_info < (3, 8) and not _IS_PYPY: print( - ( - "The typed_ast package is required but not installed.\n" - "You can upgrade to Python 3.8+ or install typed_ast with\n" - "`python3 -m pip install typed-ast`." - ), + "The typed_ast package is required but not installed.\n" + "You can upgrade to Python 3.8+ or install typed_ast with\n" + "`python3 -m pip install typed-ast`.", file=sys.stderr, ) sys.exit(1)