(self, path, missing_dir_ok)
| 283 | return self._fs.delete_dir(path) |
| 284 | |
| 285 | def delete_dir_contents(self, path, missing_dir_ok): |
| 286 | return self._fs.delete_dir_contents(path, |
| 287 | missing_dir_ok=missing_dir_ok) |
| 288 | |
| 289 | def delete_root_dir_contents(self): |
| 290 | return self._fs.delete_dir_contents("", accept_root_dir=True) |
no outgoing calls
no test coverage detected