(self, fp: str)
| 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) |
| 510 | meta.client.delete_obj(*unpack_meta(meta)) |
| 511 | |
| 512 | def _del_tmp_folder(self): |
| 513 | for fp in self._to_be_del_files: |
nothing calls this directly
no test coverage detected