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 Jun 15, 2024
1 parent 57f5621 commit f305405
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/rfc3986/compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
def to_str( # noqa: D103
b: t.Union[str, bytes],
encoding: str = "utf-8",
) -> str: ...
) -> str:
...


@t.overload
Expand All @@ -46,7 +47,8 @@ def to_str(
def to_bytes( # noqa: D103
s: t.Union[str, bytes],
encoding: str = "utf-8",
) -> bytes: ...
) -> bytes:
...


@t.overload
Expand Down

0 comments on commit f305405

Please sign in to comment.