(self, p)
| 818 | return [x.callback for x in self.ordered_callbacks(method_name)] |
| 819 | |
| 820 | def before_process(self, p): |
| 821 | for script in self.ordered_scripts('before_process'): |
| 822 | try: |
| 823 | script_args = p.script_args[script.args_from:script.args_to] |
| 824 | script.before_process(p, *script_args) |
| 825 | except Exception: |
| 826 | errors.report(f"Error running before_process: {script.filename}", exc_info=True) |
| 827 | |
| 828 | def process(self, p): |
| 829 | for script in self.ordered_scripts('process'): |
nothing calls this directly
no test coverage detected