Skip to content

Commit 2c70edd

Browse files
committed
Pluralize type.py > types.py
1 parent 2c6637d commit 2c70edd

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

src/guidellm/benchmark/entrypoints.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,13 @@
2323
from guidellm.benchmark.profile import Profile, ProfileType
2424
from guidellm.benchmark.progress import BenchmarkerProgressGroup
2525
from guidellm.benchmark.scenario import enable_scenarios
26-
from guidellm.benchmark.type import OutputFormatType, DataInputType, ProcessorInputType, ProgressInputType, \
26+
from guidellm.benchmark.types import (
27+
OutputFormatType,
28+
DataInputType,
29+
ProcessorInputType,
30+
ProgressInputType,
2731
AggregatorInputType
32+
)
2833
from guidellm.request import GenerativeRequestLoader
2934
from guidellm.scheduler import (
3035
ConstraintInitializer,

src/guidellm/benchmark/scenario.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from guidellm.backends import Backend, BackendType
1717
from guidellm.benchmark.profile import Profile, ProfileType
18-
from guidellm.benchmark.type import DataInputType, ProcessorInputType, AggregatorInputType
18+
from guidellm.benchmark.types import DataInputType, ProcessorInputType, AggregatorInputType
1919
from guidellm.scheduler import StrategyType
2020
from guidellm.utils import StandardBaseModel
2121

src/guidellm/benchmark/type.py renamed to src/guidellm/benchmark/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@
4242

4343
ProgressInputType = tuple[str, ...] | list[str] | list[BenchmarkerProgress]
4444

45-
AggregatorInputType = dict[str, str | dict[str, Any] | Aggregator | CompilableAggregator]
45+
AggregatorInputType = dict[str, str | dict[str, Any] | Aggregator | CompilableAggregator]

0 commit comments

Comments
 (0)