From efb8655de9713d59335cf2e8e9847f457c8cd711 Mon Sep 17 00:00:00 2001 From: Anderson Bravalheri Date: Fri, 24 May 2024 12:33:10 +0100 Subject: [PATCH] Fix mypy error --- pkg_resources/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py index c86d9f095c..c70b792e39 100644 --- a/pkg_resources/__init__.py +++ b/pkg_resources/__init__.py @@ -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: