Skip to content

Commit d899eff

Browse files
committed
Fix linting issues
Signed-off-by: Tushar Goel <tushar.goel.dav@gmail.com>
1 parent 738c497 commit d899eff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/packageurl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def unquote(s: AnyStr) -> str:
7272
Return a percent-decoded unicode string, given an `s` byte or unicode
7373
string.
7474
"""
75-
unquoted = _percent_unquote(s) # type:ignore[arg-type] # typeshed is incorrect here
75+
unquoted = _percent_unquote(s)
7676
if not isinstance(unquoted, str):
7777
unquoted = unquoted.decode("utf-8")
7878
return unquoted

0 commit comments

Comments
 (0)