diff --git a/pym/bob/tty.py b/pym/bob/tty.py index aeb3d1af..2960e667 100644 --- a/pym/bob/tty.py +++ b/pym/bob/tty.py @@ -88,6 +88,7 @@ def __init__(self, message, help=None): ############################################################################### class BaseTUIAction: + visible = True def __init__(self, showDetails): self.showDetails = showDetails @@ -136,6 +137,8 @@ def _isVisible(self, severity): return (low <= self.__verbosity) and (self.__verbosity <= high) class DummyTUIAction(BaseTUIAction): + visible = False + def __init__(self): super().__init__(3)