chore(deps): update pre-commit hook pre-commit/mirrors-mypy to v1.16.0 (#503)

* chore(deps): update pre-commit hook pre-commit/mirrors-mypy to v1.16.0

* fix typing

Signed-off-by: gruebel <anton.gruebel@gmail.com>

---------

Signed-off-by: gruebel <anton.gruebel@gmail.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gruebel <anton.gruebel@gmail.com>
This commit is contained in:
renovate[bot] 2025-05-30 16:35:39 +02:00 committed by GitHub
parent 8dfa88cf8a
commit 87e448593d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -26,7 +26,7 @@ class MappingProxyType(dict):
__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