fmt: makes fmting faster by only looking at src and test dirs

This commit is contained in:
Deepak Mallubhotla 2023-11-14 13:27:34 -06:00
parent 38c27ad2c4
commit d654ee61dd
Signed by: deepak
GPG Key ID: BEBAEBF28083E022

3
do.sh
View File

@ -23,7 +23,8 @@ fmt() {
else
poetry run black .
fi
find . -type f -name "*.py" -exec sed -i -e 's/ /\t/g' {} \;
find tantri -type f -name "*.py" -exec sed -i -e 's/ /\t/g' {} \;
find tests -type f -name "*.py" -exec sed -i -e 's/ /\t/g' {} \;
}
test() {