#!/bin/sh set -e python3 -m mypy *.py python3 -m flake8 *.py python3 -m pylint --good-names 'do_GET,do_POST' *.py exit 0