Skip to content

Commit 0bad7c4

Browse files
committed
fix/pydantic-report-warning
Signed-off-by: xinjun.jiang <[email protected]>
1 parent 9573703 commit 0bad7c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guidellm/presentation/data_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ class TabularDistributionSummary(DistributionSummary):
190190
"""
191191

192192
@computed_field
193-
def percentile_rows(self) -> list[dict[str, float]]:
193+
def percentile_rows(self) -> list[dict[str, Union[str, float]]]:
194194
rows = [
195195
{"percentile": name, "value": value}
196196
for name, value in self.percentiles.model_dump().items()

0 commit comments

Comments
 (0)