(self, 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)) |
| 63 | return self._fs.created(path) |
| 64 | |
| 65 | def modified(self, path): |
| 66 | path = posixpath.join(self.local_root_dir, self._strip_protocol(path)) |
nothing calls this directly
no test coverage detected