Skip to content
Snippets Groups Projects

Follow-Up Translations

Merged David Schäfer requested to merge translations into develop
Compare and Show latest version
2 files
+ 15
2
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 3
2
@@ -253,8 +253,9 @@ class History:
raise ValueError("Index does not match")
n = len(self.columns)
value_hist = value.hist
value_mask = value.mask
# don't overwrite the `.columns` of the input down the line
value_hist = value.hist.copy(deep=False)
value_mask = value.mask.copy(deep=False)
if not force:
value_hist = value_hist.iloc[:, n:]
Loading