(self, *args, **kwargs)
| 541 | ) |
| 542 | |
| 543 | def post_process(self, *args, **kwargs): |
| 544 | self.hashed_files = {} |
| 545 | yield from super().post_process(*args, **kwargs) |
| 546 | if not kwargs.get("dry_run"): |
| 547 | self.save_manifest() |
| 548 | |
| 549 | def save_manifest(self): |
| 550 | sorted_hashed_files = sorted(self.hashed_files.items()) |
nothing calls this directly
no test coverage detected