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
9ac0c25a
Commit
9ac0c25a
authored
4 years ago
by
David Schaefer
Browse files
Options
Downloads
Patches
Plain Diff
flagger: update signature information
parent
b6fb40d0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#14761
passed with stages
Stage: test
Stage: deploy
in 9 minutes and 58 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
saqc/flagger/baseflagger.py
+1
-1
1 addition, 1 deletion
saqc/flagger/baseflagger.py
saqc/flagger/dmpflagger.py
+1
-1
1 addition, 1 deletion
saqc/flagger/dmpflagger.py
with
2 additions
and
2 deletions
saqc/flagger/baseflagger.py
+
1
−
1
View file @
9ac0c25a
...
...
@@ -41,7 +41,7 @@ class BaseFlagger(ABC):
self
.
extra_defaults
=
dict
()
# NOTE: the arggumens of setFlags supported from
# the configuration functions
self
.
signature
=
(
"
flag
"
,)
self
.
signature
=
(
"
flag
"
,
"
force
"
,
"
flag_after
"
,
"
flag_before
"
)
self
.
_flags
:
Optional
[
DictOfSeries
]
=
None
@property
...
...
This diff is collapsed.
Click to expand it.
saqc/flagger/dmpflagger.py
+
1
−
1
View file @
9ac0c25a
...
...
@@ -39,7 +39,7 @@ class DmpFlagger(CategoricalFlagger):
super
().
__init__
(
FLAGS
)
self
.
flags_fields
=
[
FlagFields
.
FLAG
,
FlagFields
.
CAUSE
,
FlagFields
.
COMMENT
]
self
.
extra_defaults
=
dict
(
cause
=
FLAGS
[
0
],
comment
=
""
)
self
.
signature
=
(
"
flag
"
,
"
comment
"
,
"
cause
"
,
"
force
"
)
self
.
signature
=
self
.
signature
+
(
"
flag
"
,
"
comment
"
,
"
cause
"
)
self
.
_global_comments
=
kwargs
self
.
_flags
=
None
...
...
This diff is collapsed.
Click to expand it.
David Schäfer
@schaefed
mentioned in issue
#142 (closed)
·
4 years ago
mentioned in issue
#142 (closed)
mentioned in issue #142
Toggle commit list
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