(self, directory:str)
| 19 | self._results.output = self._output |
| 20 | |
| 21 | def _create_directory(self, directory:str): |
| 22 | if not os.path.exists(directory): |
| 23 | os.makedirs(directory) |
| 24 | |
| 25 | def _write_content(self, content, name): |
| 26 |
no outgoing calls
no test coverage detected