diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index fd068e8..b3e31fe 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,7 +4,7 @@ default_language_version: python: python3.10 repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v5.0.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer @@ -19,15 +19,15 @@ repos: - id: isort name: isort (python) - repo: https://github.com/pycqa/flake8 - rev: 7.0.0 + rev: 7.1.1 hooks: - id: flake8 - repo: https://github.com/psf/black - rev: 24.4.0 + rev: 24.10.0 hooks: - id: black - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.9.0 + rev: v1.13.0 hooks: - id: mypy exclude: ^docs/ diff --git a/src/libdeye/cloud_api.py b/src/libdeye/cloud_api.py index bf8f82f..ea190c6 100644 --- a/src/libdeye/cloud_api.py +++ b/src/libdeye/cloud_api.py @@ -15,10 +15,10 @@ ) from .types import ( DeyeApiResponseDeviceInfo, - DeyeApiResponseEnvelope, DeyeApiResponseDeyePlatformMqttInfo, - DeyeApiResponseFogPlatformMqttInfo, + DeyeApiResponseEnvelope, DeyeApiResponseFogPlatformDeviceProperties, + DeyeApiResponseFogPlatformMqttInfo, )