MCPcopy
hub / github.com/celery/celery / secho

Method secho

celery/bin/base.py:61–66  ·  view source on GitHub ↗
(self, message=None, **kwargs)

Source from the content-addressed store, hash-verified

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:

Callers 5

errorMethod · 0.80
reconnectMethod · 0.80
queue_declareFunction · 0.80
queue_deleteFunction · 0.80
queue_purgeFunction · 0.80

Calls 1

echoMethod · 0.80

Tested by

no test coverage detected