(self, p)
| 832 | def before_process(self, p): |
| 833 | for script in self.ordered_scripts('before_process'): |
| 834 | try: |
| 835 | script_args = p.script_args[script.args_from:script.args_to] |
| 836 | script.before_process(p, *script_args) |
| 837 | except Exception: |
| 838 | errors.report(f"Error running before_process: {script.filename}", exc_info=True) |
| 839 | |
| 840 | def process(self, p): |
| 841 | for script in self.ordered_scripts('process'): |
| 842 | try: |
| 843 | script_args = p.script_args[script.args_from:script.args_to] |
nothing calls this directly
no test coverage detected