Adjust CookiesT.

This commit is contained in:
Andrey Rakhmatullin 2026-06-27 01:28:40 +05:00
parent 185d6b9a20
commit 19d5a106c5
1 changed files with 1 additions and 1 deletions

View File

@ -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")