MCPcopy Create free account
hub / github.com/DenOfEquity/ersatzForge / process_batch

Method process_batch

modules/scripts.py:882–888  ·  view source on GitHub ↗
(self, p, **kwargs)

Source from the content-addressed store, hash-verified

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]

Callers

nothing calls this directly

Calls 2

ordered_scriptsMethod · 0.95
process_batchMethod · 0.45

Tested by

no test coverage detected