diff options
Diffstat (limited to 'misc/scripts/black_format.sh')
-rwxr-xr-x | misc/scripts/black_format.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/scripts/black_format.sh b/misc/scripts/black_format.sh index 45d7f9dd2b..99343f1c5a 100755 --- a/misc/scripts/black_format.sh +++ b/misc/scripts/black_format.sh @@ -6,7 +6,7 @@ set -uo pipefail # Apply black. echo -e "Formatting Python files..." -PY_FILES=$(git ls-files '*SConstruct' '*SCsub' '*.py' --exclude='.git/*' --exclude='thirdparty/*') +PY_FILES=$(git ls-files -- '*SConstruct' '*SCsub' '*.py' ':!:.git/*' ':!:thirdparty/*') black -l 120 $PY_FILES diff=$(git diff --color) |