We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 738c497 commit d899effCopy full SHA for d899eff
src/packageurl/__init__.py
@@ -72,7 +72,7 @@ def unquote(s: AnyStr) -> str:
72
Return a percent-decoded unicode string, given an `s` byte or unicode
73
string.
74
"""
75
- unquoted = _percent_unquote(s) # type:ignore[arg-type] # typeshed is incorrect here
+ unquoted = _percent_unquote(s)
76
if not isinstance(unquoted, str):
77
unquoted = unquoted.decode("utf-8")
78
return unquoted
0 commit comments