From 3e6810a7cb3064a5ee7a49ac88d890ae45f076e0 Mon Sep 17 00:00:00 2001 From: Brian Giori Date: Mon, 9 Dec 2024 08:36:13 -0800 Subject: [PATCH] fix: use typing extensions --- src/amplitude_experiment/evaluation/select.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/amplitude_experiment/evaluation/select.py b/src/amplitude_experiment/evaluation/select.py index 13a5240..cce8a12 100644 --- a/src/amplitude_experiment/evaluation/select.py +++ b/src/amplitude_experiment/evaluation/select.py @@ -1,5 +1,6 @@ from dataclasses import is_dataclass -from typing import Any, List, Optional, Protocol, runtime_checkable +from typing import Any, List, Optional +from typing_extensions import Protocol, runtime_checkable @runtime_checkable