From 90cf7a2a5d5f2c62b8a806e9068491849824d1a9 Mon Sep 17 00:00:00 2001 From: Michael Milton Date: Fri, 18 Oct 2024 12:24:18 +1100 Subject: [PATCH] Import TypeAlias from typing_extensions --- core/lls_core/models/results.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/lls_core/models/results.py b/core/lls_core/models/results.py index 98d95b94..d8781646 100644 --- a/core/lls_core/models/results.py +++ b/core/lls_core/models/results.py @@ -2,8 +2,8 @@ from itertools import groupby from pathlib import Path -from typing import Iterable, Iterator, Optional, Tuple, TypeAlias, Union, cast, TYPE_CHECKING, overload -from typing_extensions import Generic, TypeVar +from typing import Iterable, Optional, Tuple, Union, cast, TYPE_CHECKING, overload +from typing_extensions import Generic, TypeVar, TypeAlias from pydantic.v1 import BaseModel, NonNegativeInt, Field from lls_core.types import ArrayLike, is_arraylike from lls_core.utils import make_filename_suffix