(self, load_path: str, *args, **kwargs)
| 501 | self.upload_count += 1 |
| 502 | |
| 503 | def load(self, load_path: str, *args, **kwargs) -> Any: |
| 504 | self.wait() |
| 505 | meta = self._get_client(path=load_path) |
| 506 | return meta.client.load(*unpack_meta(meta), *args, **kwargs) |
| 507 | |
| 508 | def delete_obj(self, fp: str): |
| 509 | meta = self._get_client(path=fp) |
nothing calls this directly
no test coverage detected