diff --git a/stdlib/typing.pyi b/stdlib/typing.pyi index b1ae6bbdae37..369af41a7ad9 100644 --- a/stdlib/typing.pyi +++ b/stdlib/typing.pyi @@ -840,7 +840,7 @@ class MutableMapping(Mapping[_KT, _VT]): @overload def update(self: SupportsGetItem[str, _VT], m: Iterable[tuple[str, _VT]], /, **kwargs: _VT) -> None: ... @overload - def update(self: SupportsGetItem[str, _VT], **kwargs: _VT) -> None: ... + def update(self: SupportsGetItem[str, _VT], /, **kwargs: _VT) -> None: ... Text = str