From 1cb7f3062b19e90bddeff24ab2cb8d9db60b756c Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 17:59:57 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/urlstd/parse.py | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/urlstd/parse.py b/src/urlstd/parse.py index f15a6df..f5b0ed5 100644 --- a/src/urlstd/parse.py +++ b/src/urlstd/parse.py @@ -1911,28 +1911,24 @@ class URLSearchParams(Collection): """ @overload - def __init__(self, init: str) -> None: - ... + def __init__(self, init: str) -> None: ... @overload - def __init__(self, init: Sequence[Sequence[str | int | float]]) -> None: - ... + def __init__( + self, init: Sequence[Sequence[str | int | float]] + ) -> None: ... @overload - def __init__(self, init: dict[str, str | int | float]) -> None: - ... + def __init__(self, init: dict[str, str | int | float]) -> None: ... @overload - def __init__(self, init: URLRecord) -> None: - ... + def __init__(self, init: URLRecord) -> None: ... @overload - def __init__(self, init: "URLSearchParams") -> None: - ... + def __init__(self, init: "URLSearchParams") -> None: ... @overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... def __init__( self,