(self, params_dict, process_invoker: ProcessInvoker)
| 11 | |
| 12 | class ScriptDestination(destination_base.Destination): |
| 13 | def __init__(self, params_dict, process_invoker: ProcessInvoker): |
| 14 | self._communicator = _create_communicator(params_dict, process_invoker) |
| 15 | |
| 16 | def send(self, title, body, files=None): |
| 17 | environment_variables = None |
nothing calls this directly
no test coverage detected