MINOR: profiler e2e fix (#17809)

This commit is contained in:
harshsoni2024 2024-09-11 22:04:22 +05:30 committed by GitHub
parent 454467620c
commit e7cfa4889c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -603,7 +603,7 @@ class Profiler(Generic[TMetric]):
if self._system_results:
system_profile = [
SystemProfile(**system_result)
SystemProfile.model_validate(system_result)
for system_result in self._system_results
]
else: