Skip to content

Commit f5efa54

Browse files
Update specfile/types.py
Co-authored-by: Nikola Forró <[email protected]>
1 parent d9f95ca commit f5efa54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

specfile/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
try:
77
from typing import SupportsIndex
88
except ImportError:
9-
# define our own SupportsIndex type for older version of typing_extensions (EL 8)
9+
# define our own SupportsIndex type for older version of typing (Python 3.7 and older)
1010
from typing_extensions import Protocol
1111

1212
class SupportsIndex(Protocol, metaclass=abc.ABCMeta): # type: ignore [no-redef]

0 commit comments

Comments
 (0)