Removed typevar from typing_extensions as it is available in typing since

like python 3.3
This commit is contained in:
Sebastian Mohr 2025-04-02 17:25:53 +02:00
parent bcae6429a4
commit 58ab2c696a

View file

@ -41,8 +41,7 @@ from typing import Callable, Generator, TypeVar
if sys.version_info >= (3, 11):
from typing import TypeVarTuple, Unpack
else:
from typing_extensions import TypeVar, TypeVarTuple, Unpack
from typing_extensions import TypeVarTuple, Unpack
BUBBLE = "__PIPELINE_BUBBLE__"
POISON = "__PIPELINE_POISON__"