Skip to content

Commit 568e3f5

Browse files
committed
fixes types import for mypy
1 parent 7d6a4d7 commit 568e3f5

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.pre-commit-config.yaml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v4.5.0
5+
rev: v4.6.0
66
hooks:
77
- id: check-yaml
88
- id: check-added-large-files
@@ -22,19 +22,21 @@ repos:
2222
- id: requirements-txt-fixer
2323
- id: trailing-whitespace
2424
- repo: https://github.com/pycqa/flake8
25-
rev: 7.0.0
25+
rev: 7.1.1
2626
hooks:
2727
- id: flake8
2828
additional_dependencies: ["importlib-metadata<5.0.0"]
2929
- repo: https://github.com/psf/black
30-
rev: 24.2.0
30+
rev: 24.8.0
3131
hooks:
3232
- id: black
3333
- repo: https://github.com/pre-commit/mirrors-mypy
34-
rev: v1.8.0
34+
rev: v1.11.2
3535
hooks:
3636
- id: mypy
37-
additional_dependencies: [types-all]
37+
additional_dependencies:
38+
- types-PyYAML
39+
- types-python-dateutil
3840
- repo: https://github.com/PyCQA/docformatter
3941
rev: v1.7.5
4042
hooks:

0 commit comments

Comments
 (0)