mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-21 18:42:07 +08:00
Make http.cookies.SimpleCookie non-generic (#10701)
This commit is contained in:
@@ -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]): ...
|
||||
|
||||
Reference in New Issue
Block a user