minor script fixes

mypy has no fix function so it shouldn't be called as part of the fix
process.
This commit is contained in:
ducklet 2020-11-14 14:38:09 +01:00
parent acd1f949d2
commit 503f367a0d
2 changed files with 3 additions and 2 deletions

View file

@ -13,7 +13,6 @@ if [ "$1" = '--fix' ]; then
autoflake --in-place --recursive $autoflake_opts .
black .
isort --profile black .
mypy . || : # ignore
)
exit
fi