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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repos:
- id: check-merge-conflict

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.15.0
rev: v1.16.0
hooks:
- id: mypy
files: openfeature
6 changes: 3 additions & 3 deletions openfeature/immutable_dict/mapping_proxy_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def _immutable(self, *args: typing.Any, **kws: typing.Any) -> typing.NoReturn:
__setitem__ = _immutable
__delitem__ = _immutable
clear = _immutable
update = _immutable # type:ignore[assignment]
setdefault = _immutable # type:ignore[assignment]
pop = _immutable # type:ignore[assignment]
update = _immutable
setdefault = _immutable
pop = _immutable
popitem = _immutable