(self, options: str)
| 192 | @param options the command to be run locally. |
| 193 | """ |
| 194 | def _Base__lrun(self, options: str): |
| 195 | out = os.popen(options).read() |
| 196 | print(out, end='') |
| 197 | |
| 198 | """ |
| 199 | @brief Abstract method to change working directory. |
nothing calls this directly
no outgoing calls
no test coverage detected