Skip to content

Commit

Permalink
Merge pull request #105 from jlvdb/issue-104
Browse files Browse the repository at this point in the history
Added a read-only property "msg" to StageParameter
  • Loading branch information
joezuntz authored Jun 4, 2024
2 parents 3af9d97 + 8295e69 commit 1e42171
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ceci/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ def required(self):
"""Return the required flag"""
return self._required

@property
def msg(self):
"""Return the help or docstring"""
return self._help

def copy(self):
"""Return a copy of self"""
return StageParameter(
Expand Down

0 comments on commit 1e42171

Please sign in to comment.