diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3ec6bdc9..ec82f381 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -52,7 +52,7 @@ repos: - --no-extra-eol - repo: https://github.com/codespell-project/codespell - rev: v2.4.0 + rev: v2.4.1 hooks: - id: codespell args: [-w] @@ -75,7 +75,7 @@ repos: - id: docker-compose-check - repo: https://github.com/pycqa/isort - rev: 5.13.2 + rev: 6.0.0 hooks: - id: isort @@ -101,7 +101,7 @@ repos: - id: add-trailing-comma - repo: https://github.com/psf/black - rev: 24.10.0 + rev: 25.1.0 hooks: - id: black language_version: python3 diff --git a/onetl/strategy/hwm_store/__init__.py b/onetl/strategy/hwm_store/__init__.py index 2f89a595..c135bf83 100644 --- a/onetl/strategy/hwm_store/__init__.py +++ b/onetl/strategy/hwm_store/__init__.py @@ -8,7 +8,10 @@ from typing import TYPE_CHECKING if TYPE_CHECKING: - from etl_entities.hwm_store import BaseHWMStore, HWMStoreClassRegistry + from etl_entities.hwm_store import ( + BaseHWMStore, + HWMStoreClassRegistry, + ) from etl_entities.hwm_store import HWMStoreStackManager as HWMStoreManager from etl_entities.hwm_store import ( MemoryHWMStore,