Skip to content

Commit 6a2b62b

Browse files
authored
Removed unnecessary quotes from type annotation (#6540)
1 parent 9956bf1 commit 6a2b62b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/plugins/privacy/plugin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ def _parse_fragment(self, fragment: str):
247247

248248
# Parse and extract all external assets from a media file using a preset
249249
# regular expression, and return all URLs found.
250-
def _parse_media(self, initiator: File) -> "list[URL]":
250+
def _parse_media(self, initiator: File) -> list[URL]:
251251
_, extension = posixpath.splitext(initiator.dest_uri)
252252
if extension not in self.assets_expr_map:
253253
return []

0 commit comments

Comments
 (0)