Skip to content
Snippets Groups Projects
Commit 5a0b99fa authored by Bert Palm's avatar Bert Palm 🎇
Browse files

[BUGFIX] untouched is not unflagged !

parent 4d8d90af
No related branches found
No related tags found
4 merge requests!271Static expansion of regular expressions,!260Follow-Up Translations,!237Flagger Translations,!232WIP: Fuzzy testing
......@@ -160,7 +160,7 @@ class History:
self.mask[pos] = pd.Series(True, index=s.index, dtype=bool)
if force:
touched = np.isfinite(s)
touched = s.notna()
self.mask.iloc[touched, :pos] = False
self.hist[pos] = s
......@@ -287,7 +287,7 @@ class History:
----------
index : pd.Index
the index to reindex to.
fill_value_last : float, default 0
fill_value_last : float, default UNFLAGGED
value to fill nan's (UNTOUCHED) in the last column. Defaults to 0 (UNFLAGGED).
Returns
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment