blob: adb24995add12ae45bf2f1f440f2861eb0358937 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash -e
cd "$(dirname "$0")/.."
## tools/check-style
##
## Run style checks on the project, exiting with a zero status if there are no style
## issues.
exec black --check --diff envdir
|