Lines Matching refs:enabled
43 def __init__(self, enabled=None):
47 enabled: True if color output should be enabled. If False then this
50 self._enabled = enabled
59 If color is enabled, returns an ANSI sequence to start the given
62 if self.enabled:
70 If color is enabled, returns an ANSI color reset sequence, otherwise
73 if self.enabled:
88 if not self.enabled:
97 def enabled(self):
98 """See if the colorization is enabled."""