Skip to content

Commit 7fe7947

Browse files
author
Anthony Hillairet
authored
Add line length parameter to the black command (#287)
1 parent 4c4dd2d commit 7fe7947

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_suite.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ FLAKE8OUT=`flake8`
3737
reportvalidation "$FLAKE8OUT"; STATUS3=$?
3838

3939
echo -ne "$SECTION_PREFIX CHECK FORMATTING: "
40-
BLACKOUT=`black --skip-string-normalization ./ --check 2>&1`; STATUS4=$?
40+
BLACKOUT=`black --skip-string-normalization --line-length 99 ./ --check 2>&1`; STATUS4=$?
4141
if [[ $BLACKOUT == "All done!"* ]]
4242
then
4343
echo "OK"

0 commit comments

Comments
 (0)