We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95cb1d7 commit c8b730bCopy full SHA for c8b730b
src/guidellm/utils/mixins.py
@@ -60,7 +60,7 @@ def extract_from_obj(cls, obj: Any) -> dict[str, Any]:
60
{
61
key: val
62
if isinstance(val, (str, int, float, bool, list, dict))
63
- else str(val)
+ else repr(val)
64
for key, val in obj.__dict__.items()
65
if not key.startswith("_")
66
}
0 commit comments