Skip to content
Snippets Groups Projects

Several fixes

Closed David Schäfer requested to merge multifix into develop
1 unresolved thread
1 file
+ 3
2
Compare changes
  • Side-by-side
  • Inline
+ 3
2
@@ -247,8 +247,9 @@ class History:
@@ -247,8 +247,9 @@ class History:
raise ValueError("Index does not match")
raise ValueError("Index does not match")
n = len(self.columns)
n = len(self.columns)
value_hist = value.hist
# don't overwrite the `.columns` of the input down the line
value_mask = value.mask
value_hist = value.hist.copy(deep=False)
 
value_mask = value.mask.copy(deep=False)
if not force:
if not force:
value_hist = value_hist.iloc[:, n:]
value_hist = value_hist.iloc[:, n:]
Loading