fix typing

Signed-off-by: gruebel <anton.gruebel@gmail.com>
This commit is contained in:
gruebel 2025-05-30 16:31:18 +02:00
parent 244751b772
commit 39de0f60d2
1 changed files with 3 additions and 3 deletions

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