Skip to content

Commit 2aff6e4

Browse files
authored
Fix mypy error for unnecessary quotes (pypa#4393)
2 parents 52d7324 + efb8655 commit 2aff6e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg_resources/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2680,7 +2680,7 @@ def parse_map(
26802680
_data = data.items()
26812681
else:
26822682
_data = split_sections(data)
2683-
maps: Dict[str, Dict[str, "EntryPoint"]] = {}
2683+
maps: Dict[str, Dict[str, EntryPoint]] = {}
26842684
for group, lines in _data:
26852685
if group is None:
26862686
if not lines:

0 commit comments

Comments
 (0)