From 78c718c1d2a4948fa07605ff14692ca03aba25cb Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Sat, 2 Nov 2024 21:17:56 +0200 Subject: [PATCH] I don't know how that happened! --- scrapling/_types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scrapling/_types.py b/scrapling/_types.py index ca6769c..f832320 100644 --- a/scrapling/_types.py +++ b/scrapling/_types.py @@ -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