Wrapper for `send_command` method that always returns a string
(self, *args: Any, **kwargs: Any)
| 1843 | return return_val |
| 1844 | |
| 1845 | def _send_command_str(self, *args: Any, **kwargs: Any) -> str: |
| 1846 | """Wrapper for `send_command` method that always returns a string""" |
| 1847 | output = self.send_command(*args, **kwargs) |
| 1848 | assert isinstance(output, str) |
| 1849 | return output |
| 1850 | |
| 1851 | def send_command_expect( |
| 1852 | self, *args: Any, **kwargs: Any |
no test coverage detected