2018-10-15 17:25:57 +01:00
|
|
|
#!/usr/bin/env sh
|
2018-10-15 17:20:35 +01:00
|
|
|
|
2018-10-15 17:25:57 +01:00
|
|
|
if which black; then
|
2018-10-15 17:20:35 +01:00
|
|
|
black --skip-string-normalization --line-length 100 --check .
|
2018-10-15 17:25:57 +01:00
|
|
|
else
|
|
|
|
echo "Skipping black due to not being installed."
|
2018-10-15 17:20:35 +01:00
|
|
|
fi
|