We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1d2308 commit 4d5045bCopy full SHA for 4d5045b
python/pip_install/extract_wheels/lib/wheel.py
@@ -4,7 +4,7 @@
4
import os
5
import stat
6
import zipfile
7
-from typing import Dict, Optional, Set
+from typing import Dict, Optional, Set, Tuple
8
9
import installer
10
import pkg_resources
@@ -52,7 +52,7 @@ def version(self) -> str:
52
# TODO Also available as installer.sources.WheelSource.version
53
return str(self.metadata["Version"])
54
55
- def entry_points(self) -> Dict[str, tuple[str, str]]:
+ def entry_points(self) -> Dict[str, Tuple[str, str]]:
56
"""Returns the entrypoints defined in the current wheel
57
58
See https://packaging.python.org/specifications/entry-points/ for more info
0 commit comments