Skip to content

Commit 08d9419

Browse files
committed
Fix linting errors
Signed-off-by: Jared O'Connell <[email protected]>
1 parent 6308e6a commit 08d9419

File tree

3 files changed

+391
-202
lines changed

3 files changed

+391
-202
lines changed

src/guidellm/__main__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
import click
3131
from pydantic import ValidationError
3232

33-
from guidellm.data import process_dataset, ShortPromptStrategy
33+
from guidellm.data import ShortPromptStrategy, process_dataset
3434

3535
try:
3636
import uvloop
@@ -522,7 +522,8 @@ def preprocess():
522522
help=(
523523
"SyntheticTextDatasetConfig as JSON string, key=value pairs, "
524524
"or file path (.json, .yaml, .yml, .config). "
525-
"Example: 'prompt_tokens=100,output_tokens=50' or '{\"prompt_tokens\": 100, \"output_tokens\": 50}'"
525+
"Example: 'prompt_tokens=100,output_tokens=50'"
526+
" or '{\"prompt_tokens\": 100, \"output_tokens\": 50}'"
526527
),
527528
)
528529
@click.option(

src/guidellm/data/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
DatasetDeserializer,
55
DatasetDeserializerFactory,
66
)
7-
from .entrypoints import process_dataset, ShortPromptStrategy
7+
from .entrypoints import ShortPromptStrategy, process_dataset
88
from .loaders import DataLoader, DatasetsIterator
99
from .preprocessors import (
1010
DataDependentPreprocessor,

0 commit comments

Comments
 (0)