mirror of https://github.com/scrapy/scrapy.git
Adjust CookiesT.
This commit is contained in:
parent
185d6b9a20
commit
19d5a106c5
|
|
@ -51,7 +51,7 @@ class VerboseCookie(TypedDict):
|
|||
secure: NotRequired[bool]
|
||||
|
||||
|
||||
CookiesT: TypeAlias = dict[str, str] | list[VerboseCookie]
|
||||
CookiesT: TypeAlias = dict[str | bytes, str | bytes] | list[VerboseCookie]
|
||||
|
||||
|
||||
RequestTypeVar = TypeVar("RequestTypeVar", bound="Request")
|
||||
|
|
|
|||
Loading…
Reference in New Issue