Skip to content
Snippets Groups Projects
Commit b6fb40d0 authored by David Schaefer's avatar David Schaefer
Browse files

core: bugfix - disabling masking on the function level was broken

parent 7100bc96
No related branches found
No related tags found
No related merge requests found
......@@ -247,7 +247,7 @@ class SaQC:
ctrl_kws = FuncCtrl(
masking=FUNC_MAP[func_name]["masking"],
to_mask=to_mask or self._to_mask,
to_mask=self._to_mask if to_mask is None else to_mask,
plot=plot,
inplace=inplace,
)
......
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