(self, path, *args, **kwargs)
| 51 | return self._fs.rm_file(path, *args, **kwargs) |
| 52 | |
| 53 | def rm(self, path, *args, **kwargs): |
| 54 | path = posixpath.join(self.local_root_dir, self._strip_protocol(path)) |
| 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)) |
nothing calls this directly
no test coverage detected