-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Load parsed device info into application state * Fix zigpy unit tests * Bump all pre-commit dependencies so pre-commit runs * Bump to unreleased zigpy * Use zigpy watchdog and connection closing * Use zigpy `device` config schema * Drop `permit_with_key` * Remove unnecessary unit tests * Add a unit test for watchdog feeding
- Loading branch information
Showing
13 changed files
with
127 additions
and
335 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,47 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.4.0 | ||
rev: v4.5.0 | ||
hooks: | ||
- id: debug-statements | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 23.1.0 | ||
rev: 23.10.1 | ||
hooks: | ||
- id: black | ||
|
||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 6.0.0 | ||
rev: 6.1.0 | ||
hooks: | ||
- id: flake8 | ||
entry: pflake8 | ||
additional_dependencies: | ||
- pyproject-flake8==6.0.0.post1 | ||
- pyproject-flake8==6.1.0 | ||
- flake8-bugbear==23.1.20 | ||
- flake8-comprehensions==3.10.1 | ||
- flake8_2020==1.7.0 | ||
- mccabe==0.7.0 | ||
- pycodestyle==2.10.0 | ||
- pyflakes==3.0.1 | ||
- pycodestyle==2.11.1 | ||
- pyflakes==3.1.0 | ||
|
||
- repo: https://github.com/PyCQA/isort | ||
rev: 5.12.0 | ||
hooks: | ||
- id: isort | ||
|
||
- repo: https://github.com/pre-commit/mirrors-mypy | ||
rev: v1.0.0 | ||
rev: v1.6.1 | ||
hooks: | ||
- id: mypy | ||
additional_dependencies: | ||
- zigpy | ||
- types-setuptools | ||
|
||
- repo: https://github.com/asottile/pyupgrade | ||
rev: v3.3.1 | ||
rev: v3.15.0 | ||
hooks: | ||
- id: pyupgrade | ||
|
||
- repo: https://github.com/fsouza/autoflake8 | ||
rev: v0.4.0 | ||
rev: v0.4.1 | ||
hooks: | ||
- id: autoflake8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.