Skip to content

Commit e1f57c1

Browse files
committed
Fix typing import for python3.10
1 parent 5f36174 commit e1f57c1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/guidellm/benchmark/types.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33
from collections.abc import Iterable
44
from pathlib import Path
5-
from typing import Any, TypeAliasType
5+
from typing import Any
66

77
from datasets import Dataset, DatasetDict, IterableDataset, IterableDatasetDict
88
from transformers import ( # type: ignore[import]
99
PreTrainedTokenizerBase,
1010
)
11+
from typing_extensions import TypeAliasType
1112

1213
from guidellm.benchmark.aggregator import (
1314
Aggregator,

0 commit comments

Comments
 (0)