home · contact · privacy
Improve type hints sufficiently for mypy not to complain, and for Day.__eq__ check...
[plomtask] / scripts / pre-commit
1 #!/bin/sh
2 set -e
3 python3 -m mypy *.py
4 python3 -m flake8 *.py
5 python3 -m pylint *.py
6 exit 0