I don't know how that happened!

This commit is contained in:
Karim shoair
2024-11-02 21:17:56 +02:00
parent 088334b40b
commit 78c718c1d2
+2 -2
View File
@@ -7,13 +7,13 @@ from typing import (
)
try:
from scrapling._types import Protocol
from typing import Protocol
except ImportError:
# Added in Python 3.8
Protocol = object
try:
from scrapling._types import SupportsIndex
from typing import SupportsIndex
except ImportError:
# 'SupportsIndex' got added in Python 3.8
SupportsIndex = None