Skip to content

Commit 5c2b361

Browse files
committed
Remove needless quotes
1 parent f346466 commit 5c2b361

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mdurl/_decode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def decode(string: str, exclude: str = DECODE_DEFAULT_CHARS) -> str:
3636
return re.sub(r"(%[a-f0-9]{2})+", repl_func, string, flags=re.IGNORECASE)
3737

3838

39-
def repl_func_with_cache(match: "re.Match", cache: Sequence[str]) -> str:
39+
def repl_func_with_cache(match: re.Match, cache: Sequence[str]) -> str:
4040
seq = match.group()
4141
result = ""
4242

0 commit comments

Comments
 (0)