From 59390ca473f47ea51eab686788cbbba24b68ffa2 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 12 Oct 2024 11:43:03 -0500 Subject: [PATCH] Add missing type for host_subcomponent to the internal cache (#1230) --- yarl/_url.py | 1 + 1 file changed, 1 insertion(+) diff --git a/yarl/_url.py b/yarl/_url.py index 50c388e55..96a97353a 100644 --- a/yarl/_url.py +++ b/yarl/_url.py @@ -105,6 +105,7 @@ class _InternalURLCache(TypedDict, total=False): password: Union[str, None] raw_host: Union[str, None] host: Union[str, None] + host_subcomponent: Union[str, None] port: Union[int, None] explicit_port: Union[int, None] raw_path: str