Skip to content

Commit fd7d86a

Browse files
committed
Incorporate PR #50
1 parent d617183 commit fd7d86a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ada_url/ada_adapter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ def parse_search_params(s: str) -> Dict[str, List[str]]:
670670
{'key1': ['value1', 'value2'], 'key2': ['value3']}
671671
672672
"""
673-
ret: Dict[str, List[str]] = {}
673+
ret = {}
674674
for key, value in URLSearchParams(s).items():
675675
if key not in ret:
676676
ret[key] = [value]

0 commit comments

Comments
 (0)