Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SaQC
Manage
Activity
Members
Labels
Plan
Issues
36
Issue boards
Milestones
Wiki
Code
Merge requests
8
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
rdm-software
SaQC
Commits
25e119d8
Commit
25e119d8
authored
3 years ago
by
Bert Palm
🎇
Browse files
Options
Downloads
Patches
Plain Diff
fixed failing regex in API
parent
e97b634e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#29720
passed with stage
Stage: test
in 2 minutes and 25 seconds
Changes
1
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
saqc/core/core.py
+6
-1
6 additions, 1 deletion
saqc/core/core.py
with
6 additions
and
1 deletion
saqc/core/core.py
+
6
−
1
View file @
25e119d8
...
...
@@ -287,7 +287,12 @@ class SaQC(FuncModules):
)
# expand regular expressions
fields
=
self
.
_data
.
columns
.
str
.
match
(
field
)
if
regex
else
toSequence
(
field
)
if
regex
:
fields
=
self
.
_data
.
columns
.
str
.
match
(
field
)
fields
=
self
.
_data
.
columns
[
fields
]
else
:
fields
=
toSequence
(
field
)
for
field
in
fields
:
target
=
target
if
target
is
not
None
else
field
if
field
!=
target
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment