(self, remote_path, local_path, callback=None)
| 414 | raise NotConnection(self.webdav.hostname) |
| 415 | |
| 416 | def download_sync(self, remote_path, local_path, callback=None): |
| 417 | |
| 418 | self.download(local_path=local_path, remote_path=remote_path) |
| 419 | |
| 420 | if callback: |
| 421 | callback() |
| 422 | |
| 423 | def download_async(self, remote_path, local_path, callback=None): |
| 424 |
no test coverage detected