You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a quick fix (proved to be working) the following can be done but shouldn't according to stackoverflow:
in data_store.py line 21 self.data = self.data.append(row, ignore_index=True)
changed to self.data = self.data._append(row, ignore_index=True)
Edit: Seems to crash again for similar reason but in main.py when doing internal resistance measurement.
However the same fix does not work here.
The text was updated successfully, but these errors were encountered:
Rootthecause
changed the title
pandas Lib outdated
pandas Lib 'append' method outdated
Apr 4, 2024
With pandas 2.0 and newer:
AttributeError: 'DataFrame' object has no attribute 'append'. Did you mean: '_append'?
Resulting in a crash when connecting to the load via bt.
See stackoverflow for more details:
https://stackoverflow.com/questions/75956209/error-dataframe-object-has-no-attribute-append
As a quick fix (proved to be working) the following can be done but shouldn't according to stackoverflow:
in data_store.py line 21
self.data = self.data.append(row, ignore_index=True)
changed to
self.data = self.data._append(row, ignore_index=True)
Edit: Seems to crash again for similar reason but in main.py when doing internal resistance measurement.
However the same fix does not work here.
The text was updated successfully, but these errors were encountered: