(self, remote_path, local_path, callback=None)
| 536 | raise NotConnection(self.webdav.hostname) |
| 537 | |
| 538 | def upload_sync(self, remote_path, local_path, callback=None): |
| 539 | |
| 540 | self.upload(local_path=local_path, remote_path=remote_path) |
| 541 | |
| 542 | if callback: |
| 543 | callback() |
| 544 | |
| 545 | def upload_async(self, remote_path, local_path, callback=None): |
| 546 |
no test coverage detected