From 13e1eb9d062961c3c817133dbb196ab0793c699c Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 11 Oct 2024 15:26:23 -0500 Subject: [PATCH] fixups --- yarl/_url.py | 1 - 1 file changed, 1 deletion(-) diff --git a/yarl/_url.py b/yarl/_url.py index b1bbdf302..674f3097a 100644 --- a/yarl/_url.py +++ b/yarl/_url.py @@ -1248,7 +1248,6 @@ def with_path(self, path: str, *, encoded: bool = False) -> "URL": path = "/" + path return URL(self._val._replace(path=path, query="", fragment=""), encoded=True) - @classmethod def _get_str_query_from_sequence_iterable( self, items: Iterable[Tuple[Union[str, istr], QueryVariable]],