home · contact · privacy
Put mypy into strict mode, adapt code to still pass.
[plomtask] / scripts / pre-commit
index cab455311fff30eb454474b3ee840a28222bb0eb..6f84c41524e31d1aabd689c71dd37550e094ca0c 100755 (executable)
@@ -2,7 +2,7 @@
 set -e
 for dir in $(echo '.' 'plomtask' 'tests'); do
     echo "Running mypy on ${dir}/ …."
-    python3 -m mypy ${dir}/*.py
+    python3 -m mypy --strict ${dir}/*.py
     echo "Running flake8 on ${dir}/ …"
     python3 -m flake8 ${dir}/*.py
     echo "Running pylint on ${dir}/ …"