dry run log
(self, string, end='\n')
| 82 | sys.stderr.write(line) |
| 83 | |
| 84 | def dry(self, string, end='\n'): |
| 85 | """dry run log""" |
| 86 | cstart = self._color(self.GREEN) |
| 87 | cend = self._color(self.RESET) |
| 88 | sys.stdout.write(f'{cstart}[DRY] {string} {end}{cend}') |
| 89 | |
| 90 | @classmethod |
| 91 | def raw(cls, string, end='\n'): |
no test coverage detected