Skip to content

Commit 891402a

Browse files
markurtzsjmonson
andcommitted
Update src/guidellm/utils/mixins.py
Co-authored-by: Samuel Monson <[email protected]> Signed-off-by: Mark Kurtz <[email protected]>
1 parent c8b730b commit 891402a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guidellm/utils/mixins.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def create_info_dict(cls, obj: Any) -> dict[str, Any]:
9090
{
9191
key: val
9292
if isinstance(val, (str, int, float, bool, list, dict))
93-
else str(val)
93+
else repr(val)
9494
for key, val in obj.__dict__.items()
9595
if not key.startswith("_")
9696
}

0 commit comments

Comments
 (0)