Loading lib/galaxy/tools/parameters/grouping.py +9 −1 Original line number Diff line number Diff line Loading @@ -71,13 +71,21 @@ class Repeat(Group): def __init__(self): Group.__init__(self) self.title = None self._title = None self.inputs = None self.help = None self.default = 0 self.min = None self.max = None @property def title(self): return self._title or self.name @title.setter def title(self, value): self._title = value @property def title_plural(self): return inflector.pluralize(self.title) Loading Loading
lib/galaxy/tools/parameters/grouping.py +9 −1 Original line number Diff line number Diff line Loading @@ -71,13 +71,21 @@ class Repeat(Group): def __init__(self): Group.__init__(self) self.title = None self._title = None self.inputs = None self.help = None self.default = 0 self.min = None self.max = None @property def title(self): return self._title or self.name @title.setter def title(self, value): self._title = value @property def title_plural(self): return inflector.pluralize(self.title) Loading