[Black] Don't normalize underscores in numeric literals (#2174)

This commit is contained in:
Twentysix
2018-10-03 00:19:30 +02:00
committed by Toby Harradine
parent ad7466a026
commit c69b1185d3
2 changed files with 3 additions and 3 deletions

View File

@@ -14,11 +14,11 @@ for /F "tokens=* USEBACKQ" %%A in (`git ls-files "*.py"`) do (
goto %1
:reformat
black -l 99 !PYFILES!
black -l 99 -N !PYFILES!
exit /B %ERRORLEVEL%
:stylecheck
black -l 99 --check !PYFILES!
black -l 99 -N --check !PYFILES!
exit /B %ERRORLEVEL%
:help