aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--immutables/_map.pyi2
1 files changed, 1 insertions, 1 deletions
diff --git a/immutables/_map.pyi b/immutables/_map.pyi
index 863d911..c483f8f 100644
--- a/immutables/_map.pyi
+++ b/immutables/_map.pyi
@@ -43,7 +43,7 @@ class Map(Mapping[K, V]):
def __init__(
self, col: Union[Mapping[K, V], Iterable[Tuple[K, V]]] = ..., **kw: V
): ...
- def __reduce__(self) -> NoReturn: ...
+ def __reduce__(self) -> Tuple[Type[Map], Tuple[dict]]: ...
def __len__(self) -> int: ...
def __eq__(self, other: Any) -> bool: ...
def update(