(self, p, **kwargs)
| 880 | def process_batch(self, p, **kwargs): |
| 881 | for script in self.ordered_scripts('process_batch'): |
| 882 | try: |
| 883 | script_args = p.script_args[script.args_from:script.args_to] |
| 884 | script.process_batch(p, *script_args, **kwargs) |
| 885 | except Exception: |
| 886 | errors.report(f"Error running process_batch: {script.filename}", exc_info=True) |
| 887 | |
| 888 | def postprocess(self, p, processed): |
| 889 | for script in self.ordered_scripts('postprocess'): |
| 890 | try: |
| 891 | script_args = p.script_args[script.args_from:script.args_to] |
nothing calls this directly
no test coverage detected