File tree 5 files changed +8
-4
lines changed
5 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 15
15
- id : no-commit-to-branch
16
16
args : ["--branch", "main"]
17
17
- repo : https://github.com/commitizen-tools/commitizen
18
- rev : v3.13.0
18
+ rev : v3.14.1
19
19
hooks :
20
20
- id : commitizen
21
21
stages : [commit-msg]
39
39
- id : poetry-check
40
40
args : ["--lock"]
41
41
- repo : https://github.com/pre-commit/mirrors-prettier
42
- rev : v3.1.0
42
+ rev : v4.0.0-alpha.8
43
43
hooks :
44
44
- id : prettier
45
45
args : ["--tab-width", "2"]
53
53
hooks :
54
54
- id : isort
55
55
- repo : https://github.com/psf/black
56
- rev : 23.12.1
56
+ rev : 24.2.0
57
57
hooks :
58
58
- id : black
59
59
- repo : https://github.com/codespell-project/codespell
70
70
- id : mypy
71
71
additional_dependencies : []
72
72
- repo : https://github.com/PyCQA/bandit
73
- rev : 1.7.6
73
+ rev : 1.7.7
74
74
hooks :
75
75
- id : bandit
76
76
args : [-x, tests]
Original file line number Diff line number Diff line change 1
1
"""Collect html pages for Vodafone Station."""
2
+
2
3
import argparse
3
4
import asyncio
4
5
import logging
Original file line number Diff line number Diff line change 1
1
"""Support for Vodafone Station."""
2
+
2
3
import asyncio
3
4
import hashlib
4
5
import hmac
Original file line number Diff line number Diff line change 1
1
"""Constants for Vodafone Station."""
2
+
2
3
import logging
3
4
from enum import Enum
4
5
Original file line number Diff line number Diff line change 1
1
"""Vodafone Station library exceptions."""
2
+
2
3
from __future__ import annotations
3
4
4
5
You can’t perform that action at this time.
0 commit comments