From a4a3675a09dd52ced29d5c417829626fecf89639 Mon Sep 17 00:00:00 2001 From: rlskoeser Date: Thu, 29 Aug 2024 19:08:18 -0400 Subject: [PATCH] Configure mypy pre-commit check completes #29 --- .pre-commit-config.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 94823a3..f75929b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,4 +12,9 @@ repos: - id: debug-statements - id: end-of-file-fixer - id: mixed-line-ending - - id: trailing-whitespace \ No newline at end of file + - id: trailing-whitespace + - repo: https://github.com/pre-commit/mirrors-mypy + rev: v1.11.2 + hooks: + - id: mypy + additional_dependencies: [types-python-dateutil]