Skip to content

Commit cacd5ba

Browse files
authored
Merge pull request #80 from chemelli74/pre-commit-ci-update-config
chore(pre-commit.ci): pre-commit autoupdate
2 parents 6b10257 + dfa1359 commit cacd5ba

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

.pre-commit-config.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ repos:
1515
- id: no-commit-to-branch
1616
args: ["--branch", "main"]
1717
- repo: https://github.com/commitizen-tools/commitizen
18-
rev: v3.13.0
18+
rev: v3.14.1
1919
hooks:
2020
- id: commitizen
2121
stages: [commit-msg]
@@ -39,7 +39,7 @@ repos:
3939
- id: poetry-check
4040
args: ["--lock"]
4141
- repo: https://github.com/pre-commit/mirrors-prettier
42-
rev: v3.1.0
42+
rev: v4.0.0-alpha.8
4343
hooks:
4444
- id: prettier
4545
args: ["--tab-width", "2"]
@@ -53,7 +53,7 @@ repos:
5353
hooks:
5454
- id: isort
5555
- repo: https://github.com/psf/black
56-
rev: 23.12.1
56+
rev: 24.2.0
5757
hooks:
5858
- id: black
5959
- repo: https://github.com/codespell-project/codespell
@@ -70,7 +70,7 @@ repos:
7070
- id: mypy
7171
additional_dependencies: []
7272
- repo: https://github.com/PyCQA/bandit
73-
rev: 1.7.6
73+
rev: 1.7.7
7474
hooks:
7575
- id: bandit
7676
args: [-x, tests]

docs/script_grab.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Collect html pages for Vodafone Station."""
2+
23
import argparse
34
import asyncio
45
import logging

src/aiovodafone/api.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Support for Vodafone Station."""
2+
23
import asyncio
34
import hashlib
45
import hmac

src/aiovodafone/const.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Constants for Vodafone Station."""
2+
23
import logging
34
from enum import Enum
45

src/aiovodafone/exceptions.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Vodafone Station library exceptions."""
2+
23
from __future__ import annotations
34

45

0 commit comments

Comments
 (0)