Skip to content

Commit

Permalink
Fix mypy error for unnecessary quotes (pypa#4393)
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed May 24, 2024
2 parents 52d7324 + efb8655 commit 2aff6e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg_resources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2680,7 +2680,7 @@ def parse_map(
_data = data.items()
else:
_data = split_sections(data)
maps: Dict[str, Dict[str, "EntryPoint"]] = {}
maps: Dict[str, Dict[str, EntryPoint]] = {}
for group, lines in _data:
if group is None:
if not lines:
Expand Down

0 comments on commit 2aff6e4

Please sign in to comment.