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 d9f95ca commit f5efa54Copy full SHA for f5efa54
specfile/types.py
@@ -6,7 +6,7 @@
6
try:
7
from typing import SupportsIndex
8
except ImportError:
9
- # define our own SupportsIndex type for older version of typing_extensions (EL 8)
+ # define our own SupportsIndex type for older version of typing (Python 3.7 and older)
10
from typing_extensions import Protocol
11
12
class SupportsIndex(Protocol, metaclass=abc.ABCMeta): # type: ignore [no-redef]
0 commit comments