Skip to content

Commit 59ab003

Browse files
committed
Remove no longer applicable type ignore
Signed-off-by: Jared O'Connell <[email protected]>
1 parent 5c06a8a commit 59ab003

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guidellm/data/preprocessors/formatters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def __call__(
104104
if prefix or text:
105105
arguments.body["prompt"] = prefix + text
106106
stats = text_stats(arguments.body["prompt"])
107-
input_metrics.text_characters = stats.get("num_chars") # type: ignore[assignment] #
107+
input_metrics.text_characters = stats.get("num_chars")
108108
input_metrics.text_words = stats.get("num_words")
109109

110110
return GenerationRequest(

0 commit comments

Comments
 (0)