(self, message=None, **kwargs)
| 59 | return click.style(message, **kwargs) |
| 60 | |
| 61 | def secho(self, message=None, **kwargs): |
| 62 | if self.no_color: |
| 63 | kwargs['color'] = False |
| 64 | click.echo(message, **kwargs) |
| 65 | else: |
| 66 | click.secho(message, **kwargs) |
| 67 | |
| 68 | def echo(self, message=None, **kwargs): |
| 69 | if self.no_color: |
no test coverage detected