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

fixed initialize bug

parent 9c7b797c
No related branches found
No related tags found
3 merge requests!271Static expansion of regular expressions,!260Follow-Up Translations,!237Flagger Translations
......@@ -104,7 +104,7 @@ class SaQC(FuncModules):
def __init__(self, data, flags=None, nodata=np.nan, to_mask=None, error_policy="raise"):
super().__init__(self)
data, flagger = _prepInput(data, flags)
data, flags = _prepInput(data, flags)
self._data = data
self._nodata = nodata
self._to_mask = to_mask
......
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