Skip to content

Commit

Permalink
Incorporate PR #50
Browse files Browse the repository at this point in the history
  • Loading branch information
bbayles committed Oct 31, 2023
1 parent d617183 commit fd7d86a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ada_url/ada_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ def parse_search_params(s: str) -> Dict[str, List[str]]:
{'key1': ['value1', 'value2'], 'key2': ['value3']}
"""
ret: Dict[str, List[str]] = {}
ret = {}
for key, value in URLSearchParams(s).items():
if key not in ret:
ret[key] = [value]
Expand Down

0 comments on commit fd7d86a

Please sign in to comment.