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 f2a5ae9 commit 44068e9Copy full SHA for 44068e9
src/guidellm/utils/mixins.py
@@ -90,7 +90,7 @@ def create_info_dict(cls, obj: Any) -> dict[str, Any]:
90
{
91
key: val
92
if isinstance(val, (str, int, float, bool, list, dict))
93
- else str(val)
+ else repr(val)
94
for key, val in obj.__dict__.items()
95
if not key.startswith("_")
96
}
0 commit comments