Add mypy to pre-commit (#43)

* Add mypy to pre-commit

* Enable GH action to run pytest on Python 3.13
This commit is contained in:
Kacper Łukawski
2025-04-10 15:03:48 +02:00
committed by GitHub
parent 75d605deff
commit ecba1ddce6
6 changed files with 21 additions and 14 deletions

View File

@@ -27,3 +27,9 @@ repos:
- id: isort
name: "Sort Imports"
args: [ "--profile", "black" ]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.9.0
hooks:
- id: mypy
additional_dependencies: [tokenize-rt==3.2.0]