mypy
Installation
SKILL.md
Mypy - Professional Static Type Checking
Mypy is a static type checker for Python that finds bugs without running code. This skill provides comprehensive guidance for professional mypy integration and usage.
Quick Start
Installation and Basic Usage
# Install mypy
python3 -m pip install mypy
# Check a file
mypy program.py
# Check with strict mode
mypy --strict program.py