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

Method process

modules/scripts.py:842–848  ·  view source on GitHub ↗
(self, p)

Source from the content-addressed store, hash-verified

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]

Callers

nothing calls this directly

Calls 2

ordered_scriptsMethod · 0.95
processMethod · 0.45

Tested by

no test coverage detected