(self, p)
| 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] |
| 844 | script.process(p, *script_args) |
| 845 | except Exception: |
| 846 | errors.report(f"Error running process: {script.filename}", exc_info=True) |
| 847 | |
| 848 | def process_before_every_sampling(self, p, **kwargs): |
| 849 | for script in self.ordered_scripts('process_before_every_sampling'): |
| 850 | try: |
| 851 | script_args = p.script_args[script.args_from:script.args_to] |
nothing calls this directly
no test coverage detected