summaryrefslogtreecommitdiff
path: root/mypy-README.md
blob: c4c29180d91f6076a686cf18d0227d13418c7fc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
### Optional type checking with mypy

mypy is an optional static typechecker that works with Python 3.
To use it, install the following dependencies:
```bash
# Install dependencies
pip install mypy mypy-extensions

# Run type checker in the pytorch/ directory
mypy @mypy-files.txt
```