X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/f16333e78ba77ab29ab0b75e10891e6c65c6da7e..a36878eb2f375e2ac1e13052f663909f3835ec46:/src/black/parsing.py diff --git a/src/black/parsing.py b/src/black/parsing.py index 762934b..c37c12b 100644 --- a/src/black/parsing.py +++ b/src/black/parsing.py @@ -29,9 +29,11 @@ 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)