(self, description, command)
| 26 | return self.decode_bytes(self._command) |
| 27 | |
| 28 | def __init__(self, description, command): |
| 29 | super().__init__() |
| 30 | self.description = description |
| 31 | self._command = self.encode_string(command) |
nothing calls this directly
no test coverage detected