From 58ab2c696abfc3b2725cb135c0906f4df2b6daf7 Mon Sep 17 00:00:00 2001 From: Sebastian Mohr Date: Wed, 2 Apr 2025 17:25:53 +0200 Subject: [PATCH] Removed typevar from typing_extensions as it is available in typing since like python 3.3 --- beets/util/pipeline.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/beets/util/pipeline.py b/beets/util/pipeline.py index a37728dd9..98a1addce 100644 --- a/beets/util/pipeline.py +++ b/beets/util/pipeline.py @@ -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__"