diff --git a/stdlib/http/cookies.pyi b/stdlib/http/cookies.pyi index e24ef9cbdd2e..4158f34e0f54 100644 --- a/stdlib/http/cookies.pyi +++ b/stdlib/http/cookies.pyi @@ -57,4 +57,4 @@ class BaseCookie(dict[str, Morsel[_T]], Generic[_T]): def load(self, rawdata: _DataType) -> None: ... def __setitem__(self, key: str, value: str | Morsel[_T]) -> None: ... -class SimpleCookie(BaseCookie[_T], Generic[_T]): ... +class SimpleCookie(BaseCookie[str]): ...