MCPcopy Index your code
hub / github.com/LabPy/lantz / _postprocess

Method _postprocess

lantz/foreign.py:233–241  ·  view source on GitHub ↗
(self, name, ret, collect)

Source from the content-addressed store, hash-verified

231 return self._postprocess(name, ret, collect)
232
233 def _postprocess(self, name, ret, collect):
234 if collect:
235 values = [item.value for item in collect]
236 values.insert(0, ret)
237 self.log_debug('Function call {} returned {}. Collected: {}', name, ret, collect)
238 return tuple(values)
239
240 self.log_debug('Function call {} returned {}.', name, ret)
241 return ret
242
243
244def iter_lib(library_name, folder=''):

Callers 1

_wrapperMethod · 0.95

Calls 1

log_debugMethod · 0.80

Tested by

no test coverage detected