Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ repos:
- id: text-unicode-replacement-char

- repo: https://github.com/asottile/pyupgrade
rev: v3.21.0
rev: v3.21.1
hooks:
- id: pyupgrade
args: [--py37-plus, --keep-runtime-typing]
Expand All @@ -96,7 +96,7 @@ repos:
require_serial: true

- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.9.0
rev: 25.11.0
hooks:
- id: black

Expand Down
2 changes: 1 addition & 1 deletion horizon_hwm_store/horizon_hwm_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def force_create_namespace(self) -> HorizonHWMStore:
namespace = self.client.create_namespace(NamespaceCreateRequestV1(name=self.namespace))
self._namespace_id = namespace.id # noqa: WPS601
except EntityAlreadyExistsError:
...
namespace = self._get_namespace(self.namespace)
return self

# LoginPassword, RetryConfig and TimeoutConfig can be inherited from Pydantic v2 BaseModel
Expand Down