Skip to content

Commit e8fa7ac

Browse files
hukkinj11st1
authored andcommitted
Fix return type annotation of Map.__reduce__
1 parent 090f0e7 commit e8fa7ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

immutables/_map.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Map(Mapping[K, V]):
4343
def __init__(
4444
self, col: Union[Mapping[K, V], Iterable[Tuple[K, V]]] = ..., **kw: V
4545
): ...
46-
def __reduce__(self) -> NoReturn: ...
46+
def __reduce__(self) -> Tuple[Type[Map], Tuple[dict]]: ...
4747
def __len__(self) -> int: ...
4848
def __eq__(self, other: Any) -> bool: ...
4949
def update(

0 commit comments

Comments
 (0)