(self, path, *args, **kwargs)
| 55 | return self._fs.rm(path, *args, **kwargs) |
| 56 | |
| 57 | def _open(self, path, *args, **kwargs): |
| 58 | path = posixpath.join(self.local_root_dir, self._strip_protocol(path)) |
| 59 | return self._fs._open(path, *args, **kwargs) |
| 60 | |
| 61 | def created(self, path): |
| 62 | path = posixpath.join(self.local_root_dir, self._strip_protocol(path)) |
nothing calls this directly
no test coverage detected