You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/usr/bin/env bash
-
- # taken from: https://jaredkhan.com/blog/mypy-pre-commit
-
- # A script for running mypy,
- # with all its dependencies installed.
-
- set -o errexit
-
- # Change directory to the project root directory.
- cd "$(dirname "$0")"/..
-
- pip install -q -e .[types]
-
- mypy
|