Results: Minor change.

opt-result
Pierre-Antoine 2026-06-18 10:11:17 +02:00
parent 181a6c226f
commit 4d014d5a1d
1 changed files with 2 additions and 1 deletions

View File

@ -79,7 +79,8 @@ class Profile(SQLSubModel):
# If is a generator, compute value(s)
if isinstance(v, types.GeneratorType):
v = self._data[timestamp][key] = next(v)
v = next(v)
self._data[timestamp][key] = v
return v