(self, path1, path2, *args, **kwargs)
| 42 | return out |
| 43 | |
| 44 | def cp_file(self, path1, path2, *args, **kwargs): |
| 45 | path1 = posixpath.join(self.local_root_dir, self._strip_protocol(path1)) |
| 46 | path2 = posixpath.join(self.local_root_dir, self._strip_protocol(path2)) |
| 47 | return self._fs.cp_file(path1, path2, *args, **kwargs) |
| 48 | |
| 49 | def rm_file(self, path, *args, **kwargs): |
| 50 | path = posixpath.join(self.local_root_dir, self._strip_protocol(path)) |
nothing calls this directly
no test coverage detected