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

flagger: update signature information

parent b6fb40d0
No related branches found
No related tags found
No related merge requests found
Pipeline #14761 passed with stages
in 9 minutes and 58 seconds
......@@ -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
......
......@@ -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
......
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