MCPcopy Index your code
hub / github.com/pathwaycom/pathway / _prepare_inputs

Method _prepare_inputs

python/pathway/internals/operator.py:143–151  ·  view source on GitHub ↗
(self, inputs: ArgTuple)

Source from the content-addressed store, hash-verified

141 return self._outputs[name].value
142
143 def _prepare_inputs(self, inputs: ArgTuple):
144 valid_inputs = [
145 (name, value)
146 for name, value in inputs.items()
147 if isinstance(value, OperatorInput)
148 ]
149 for name, value in valid_inputs:
150 input = InputHandle(self, name, value)
151 self._inputs[name] = input
152
153 def _prepare_outputs(self, outputs: ArgTuple):
154 for name, value in outputs.items():

Callers 5

__call__Method · 0.80
__call__Method · 0.80
__call__Method · 0.80
__call__Method · 0.80
__call__Method · 0.80

Calls 2

InputHandleClass · 0.85
itemsMethod · 0.80

Tested by

no test coverage detected