Skip to content

Commit c3bad38

Browse files
[pre-commit.ci] pre-commit autoupdate (#48)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 24.10.0 → 25.1.0](psf/black@24.10.0...25.1.0) - [github.com/pycqa/flake8: 7.1.1 → 7.1.2](PyCQA/flake8@7.1.1...7.1.2) - [github.com/PyCQA/isort: 5.13.2 → 6.0.0](PyCQA/isort@5.13.2...6.0.0) - [github.com/pycqa/pylint: v3.3.3 → v3.3.4](pylint-dev/pylint@v3.3.3...v3.3.4) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 9934904 commit c3bad38

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ default_language_version:
22
python: python3.11
33
repos:
44
- repo: https://github.com/psf/black
5-
rev: 24.10.0
5+
rev: 25.1.0
66
hooks:
77
- id: black
88
args:
@@ -11,18 +11,18 @@ repos:
1111
- --extend-exclude=venv
1212
language_version: python3.11
1313
- repo: https://github.com/pycqa/flake8
14-
rev: 7.1.1
14+
rev: 7.1.2
1515
hooks:
1616
- id: flake8
1717
additional_dependencies:
1818
#- flake8-docstrings==1.5.0
1919
- pydocstyle==5.0.2
2020
- repo: https://github.com/PyCQA/isort
21-
rev: 5.13.2
21+
rev: 6.0.0
2222
hooks:
2323
- id: isort
2424
- repo: https://github.com/pycqa/pylint
25-
rev: v3.3.3
25+
rev: v3.3.4
2626
hooks:
2727
- id: pylint
2828
additional_dependencies:

pydaikin/factory.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
class DaikinFactory: # pylint: disable=too-few-public-methods
2020
"Factory object generating instantiated instances of Appliance"
21+
2122
_generated_object: Appliance
2223

2324
async def __new__(cls, *a, **kw): # pylint: disable=invalid-overridden-method

pydaikin/response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"Function to parse responses coming in, used by multiple classes"
2+
23
import logging
34
import re
45
from urllib.parse import unquote

0 commit comments

Comments
 (0)