Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 8, 2024
1 parent 2ad2d79 commit 1cb7f30
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions src/urlstd/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 1cb7f30

Please sign in to comment.