(self, command: str)
| 82 | @throw CommandException if there is a connection error. |
| 83 | """ |
| 84 | def __eval(self, command: str): |
| 85 | out = self._Base__send_message( |
| 86 | f"process.chdir('{self.directory}');" |
| 87 | f"{command}") |
| 88 | return out |
| 89 | |
| 90 | """ |
| 91 | @brief See base class for details. |
no test coverage detected