Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ada_url/ada_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ def decode(s: Union[str, bytes]) -> str:
return _get_str(data)

@staticmethod
def encode(s: Union[str, bytes]) -> str:
def encode(s: Union[str, bytes]) -> bytes:
if isinstance(s, str):
s = s.encode()

Expand Down
Loading