We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f346466 commit 5c2b361Copy full SHA for 5c2b361
src/mdurl/_decode.py
@@ -36,7 +36,7 @@ def decode(string: str, exclude: str = DECODE_DEFAULT_CHARS) -> str:
36
return re.sub(r"(%[a-f0-9]{2})+", repl_func, string, flags=re.IGNORECASE)
37
38
39
-def repl_func_with_cache(match: "re.Match", cache: Sequence[str]) -> str:
+def repl_func_with_cache(match: re.Match, cache: Sequence[str]) -> str:
40
seq = match.group()
41
result = ""
42
0 commit comments