(path)
| 158 | |
| 159 | @staticmethod |
| 160 | def exists(path): |
| 161 | if "s3://" in path: |
| 162 | return PetrelHelper._petrel_helper.client.contains(path) |
| 163 | else: |
| 164 | return os.path.exists(path) |
| 165 | |
| 166 | @staticmethod |
| 167 | def save(model, path, ceph_path=None): |
no outgoing calls
no test coverage detected