(self, *args, manifest_storage=None, **kwargs)
| 510 | keep_intermediate_files = False |
| 511 | |
| 512 | def __init__(self, *args, manifest_storage=None, **kwargs): |
| 513 | super().__init__(*args, **kwargs) |
| 514 | if manifest_storage is None: |
| 515 | manifest_storage = self |
| 516 | self.manifest_storage = manifest_storage |
| 517 | self.hashed_files, self.manifest_hash = self.load_manifest() |
| 518 | |
| 519 | def read_manifest(self): |
| 520 | try: |
nothing calls this directly
no test coverage detected