(self, p, **kwargs)
| 842 | errors.report(f"Error running process_before_every_sampling: {script.filename}", exc_info=True) |
| 843 | |
| 844 | def before_process_batch(self, p, **kwargs): |
| 845 | for script in self.ordered_scripts('before_process_batch'): |
| 846 | try: |
| 847 | script_args = p.script_args[script.args_from:script.args_to] |
| 848 | script.before_process_batch(p, *script_args, **kwargs) |
| 849 | except Exception: |
| 850 | errors.report(f"Error running before_process_batch: {script.filename}", exc_info=True) |
| 851 | |
| 852 | def after_extra_networks_activate(self, p, **kwargs): |
| 853 | for script in self.ordered_scripts('after_extra_networks_activate'): |
nothing calls this directly
no test coverage detected