fixing temperatures setting for mgxs (#3712)

This commit is contained in:
Jonathan Shimwell 2026-01-07 11:54:57 +01:00 committed by GitHub
parent 830f075b5c
commit dfc80c7069
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -484,7 +484,8 @@ class XSdata:
check_type('temperature', temperature, Real)
temp_store = self.temperatures.tolist().append(temperature)
temp_store = self.temperatures.tolist()
temp_store.append(temperature)
self.temperatures = temp_store
self._total.append(None)