(self, buff)
| 1085 | return self.client.check(self.urn.path()) |
| 1086 | |
| 1087 | def read_from(self, buff): |
| 1088 | self.client.upload_from(buff=buff, remote_path=self.urn.path()) |
| 1089 | |
| 1090 | def read(self, local_path): |
| 1091 | return self.client.upload_sync(local_path=local_path, remote_path=self.urn.path()) |
nothing calls this directly
no test coverage detected