(self, message=None, **kwargs)
| 53 | return self.style("ERROR", fg="red", bold=True) |
| 54 | |
| 55 | def style(self, message=None, **kwargs): |
| 56 | if self.no_color: |
| 57 | return message |
| 58 | else: |
| 59 | return click.style(message, **kwargs) |
| 60 | |
| 61 | def secho(self, message=None, **kwargs): |
| 62 | if self.no_color: |
no outgoing calls
no test coverage detected