blob: c4c29180d91f6076a686cf18d0227d13418c7fc4 [file] [log] [blame] [view]
### 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
```