diff options
-rwxr-xr-x | check | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -33,7 +33,10 @@ case $SUBCMD in "qa") flake8 --select=E,F,W,C90,E123 --ignore=W503 . isort --check-only --diff . - doc8 . + if which doc8 + then + doc8 . + fi ;; "typecheck") mypy hazwaz |