Skip to content
Snippets Groups Projects
Commit 7ab92adb authored by David Schäfer's avatar David Schäfer
Browse files

Merge branch 'develop' into 'multifields'

# Conflicts:
#   saqc/core/core.py
parents 49cb9886 0fb9d12b
No related branches found
No related tags found
10 merge requests!685Release 2.4,!684Release 2.4,!567Release 2.2.1,!566Release 2.2,!501Release 2.1,!372fix doctest snippets,!369Current documentation,!345Rework the generic functions,!343Fix Processing Functions. Introduce custom target Parameter.,!340Multivariate functions
Pipeline #50691 failed with stage
in 1 minute and 42 seconds
......@@ -244,7 +244,7 @@ class SaQC(FunctionsMixin):
# expand regular expressions
if regex:
fmask = self._data.columns.str.match(field)
fields: list = self._data.columns[fmask].tolist()
fields = self._data.columns[fmask].tolist()
else:
fields = toSequence(field)
......@@ -252,6 +252,7 @@ class SaQC(FunctionsMixin):
# we wrap field again to generalize the down stream loop work as expected
fields = [fields]
out = self
for f in fields:
......
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