Skip to content

Commit

Permalink
run ruff format
Browse files Browse the repository at this point in the history
  • Loading branch information
trim21 committed May 31, 2024
1 parent d84de59 commit f1fee53
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions httpx/_urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,12 +428,10 @@ class QueryParams(typing.Mapping[str, str | bytes]):
__slots__ = ("_dict",)

@typing.overload
def __init__(self, qs: QueryParamTypes | None, /) -> None:
...
def __init__(self, qs: QueryParamTypes | None, /) -> None: ...

@typing.overload
def __init__(self, /, **kwargs: typing.Any) -> None:
...
def __init__(self, /, **kwargs: typing.Any) -> None: ...

def __init__(self, /, *args: QueryParamTypes | None, **kwargs: typing.Any) -> None:
assert len(args) < 2, "Too many arguments."
Expand Down

0 comments on commit f1fee53

Please sign in to comment.