10 lines
152 B
Bash
Executable File
10 lines
152 B
Bash
Executable File
#!/bin/bash
|
|
|
|
FILES_TO_FORMAT="atst/ tests/ app.py"
|
|
|
|
if [ $1 == "check" ]; then
|
|
black --check -q ${FILES_TO_FORMAT}
|
|
else
|
|
black ${FILES_TO_FORMAT}
|
|
fi
|