(self, local_path)
| 1097 | return self.client.download_to(buff=buff, remote_path=self.urn.path()) |
| 1098 | |
| 1099 | def write(self, local_path): |
| 1100 | return self.client.download_sync(local_path=local_path, remote_path=self.urn.path()) |
| 1101 | |
| 1102 | def write_async(self, local_path, callback=None): |
| 1103 | return self.client.download_async(local_path=local_path, remote_path=self.urn.path(), callback=callback) |
no test coverage detected