(self, remote_path, local_path, callback=None)
| 421 | callback() |
| 422 | |
| 423 | def download_async(self, remote_path, local_path, callback=None): |
| 424 | |
| 425 | target = (lambda: self.download_sync(local_path=local_path, remote_path=remote_path, callback=callback)) |
| 426 | threading.Thread(target=target).start() |
| 427 | |
| 428 | def upload_from(self, buff, remote_path): |
| 429 |
no test coverage detected