Skip to content

Commit f2a5ae9

Browse files
markurtzsjmonson
andauthored
Update src/guidellm/utils/mixins.py
Co-authored-by: Samuel Monson <[email protected]> Signed-off-by: Mark Kurtz <[email protected]>
1 parent 72c4dc5 commit f2a5ae9

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
@@ -60,7 +60,7 @@ def extract_from_obj(cls, obj: Any) -> dict[str, Any]:
6060
{
6161
key: val
6262
if isinstance(val, (str, int, float, bool, list, dict))
63-
else str(val)
63+
else repr(val)
6464
for key, val in obj.__dict__.items()
6565
if not key.startswith("_")
6666
}

0 commit comments

Comments
 (0)