Skip to content

Commit 6b9dfa9

Browse files
chore(pre-commit.ci): pre-commit autoupdate (#23)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 19d388b commit 6b9dfa9

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.all-contributorsrc

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
"projectOwner": "bluetooth-devices",
44
"repoType": "github",
55
"repoHost": "https://github.com",
6-
"files": [
7-
"README.md"
8-
],
6+
"files": ["README.md"],
97
"imageSize": 80,
108
"commit": true,
119
"commitConvention": "angular",

.pre-commit-config.yaml

+10-10
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ ci:
99

1010
repos:
1111
- repo: https://github.com/commitizen-tools/commitizen
12-
rev: v2.32.2
12+
rev: v3.27.0
1313
hooks:
1414
- id: commitizen
1515
stages: [commit-msg]
1616
- repo: https://github.com/pre-commit/pre-commit-hooks
17-
rev: v4.3.0
17+
rev: v4.6.0
1818
hooks:
1919
- id: debug-statements
2020
- id: check-builtin-literals
@@ -29,38 +29,38 @@ repos:
2929
- id: trailing-whitespace
3030
- id: debug-statements
3131
- repo: https://github.com/pre-commit/mirrors-prettier
32-
rev: v2.7.1
32+
rev: v4.0.0-alpha.8
3333
hooks:
3434
- id: prettier
3535
args: ["--tab-width", "2"]
3636
- repo: https://github.com/asottile/pyupgrade
37-
rev: v2.37.3
37+
rev: v3.16.0
3838
hooks:
3939
- id: pyupgrade
4040
args: [--py37-plus]
4141
- repo: https://github.com/PyCQA/isort
42-
rev: 5.12.0
42+
rev: 5.13.2
4343
hooks:
4444
- id: isort
4545
- repo: https://github.com/psf/black
46-
rev: 22.6.0
46+
rev: 24.4.2
4747
hooks:
4848
- id: black
4949
- repo: https://github.com/codespell-project/codespell
50-
rev: v2.2.1
50+
rev: v2.3.0
5151
hooks:
5252
- id: codespell
5353
- repo: https://github.com/PyCQA/flake8
54-
rev: 5.0.4
54+
rev: 7.1.0
5555
hooks:
5656
- id: flake8
5757
- repo: https://github.com/pre-commit/mirrors-mypy
58-
rev: v0.931
58+
rev: v1.10.1
5959
hooks:
6060
- id: mypy
6161
additional_dependencies: []
6262
- repo: https://github.com/PyCQA/bandit
63-
rev: 1.7.4
63+
rev: 1.7.9
6464
hooks:
6565
- id: bandit
6666
args: [-x, tests]

src/thermopro_ble/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Parser for ThermoPro BLE advertisements."""
2+
23
from __future__ import annotations
34

45
from sensor_state_data import (

src/thermopro_ble/parser.py

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
66
MIT License applies.
77
"""
8+
89
from __future__ import annotations
910

1011
import logging

0 commit comments

Comments
 (0)