Skip to content

Commit 87e4485

Browse files
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>
1 parent 8dfa88c commit 87e4485

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repos:
1616
- id: check-merge-conflict
1717

1818
- repo: https://github.com/pre-commit/mirrors-mypy
19-
rev: v1.15.0
19+
rev: v1.16.0
2020
hooks:
2121
- id: mypy
2222
files: openfeature

openfeature/immutable_dict/mapping_proxy_type.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def _immutable(self, *args: typing.Any, **kws: typing.Any) -> typing.NoReturn:
2626
__setitem__ = _immutable
2727
__delitem__ = _immutable
2828
clear = _immutable
29-
update = _immutable # type:ignore[assignment]
30-
setdefault = _immutable # type:ignore[assignment]
31-
pop = _immutable # type:ignore[assignment]
29+
update = _immutable
30+
setdefault = _immutable
31+
pop = _immutable
3232
popitem = _immutable

0 commit comments

Comments
 (0)