(self, p, images, **kwargs)
| 874 | errors.report(f"Error running postprocess: {script.filename}", exc_info=True) |
| 875 | |
| 876 | def postprocess_batch(self, p, images, **kwargs): |
| 877 | for script in self.ordered_scripts('postprocess_batch'): |
| 878 | try: |
| 879 | script_args = p.script_args[script.args_from:script.args_to] |
| 880 | script.postprocess_batch(p, *script_args, images=images, **kwargs) |
| 881 | except Exception: |
| 882 | errors.report(f"Error running postprocess_batch: {script.filename}", exc_info=True) |
| 883 | |
| 884 | def postprocess_batch_list(self, p, pp: PostprocessBatchListArgs, **kwargs): |
| 885 | for script in self.ordered_scripts('postprocess_batch_list'): |
nothing calls this directly
no test coverage detected