(self, local_path, callback=None)
| 1091 | return self.client.upload_sync(local_path=local_path, remote_path=self.urn.path()) |
| 1092 | |
| 1093 | def read_async(self, local_path, callback=None): |
| 1094 | return self.client.upload_async(local_path=local_path, remote_path=self.urn.path(), callback=callback) |
| 1095 | |
| 1096 | def write_to(self, buff): |
| 1097 | return self.client.download_to(buff=buff, remote_path=self.urn.path()) |
nothing calls this directly
no test coverage detected