(single_input_return, scope, position)
| 142 | |
| 143 | |
| 144 | def _pin_output(single_input_return, scope, position): |
| 145 | input_kwargs = single_input_kwargs(single_input_return) |
| 146 | spec = _get_output_spec('pin', input=input_kwargs['item_spec'], scope=scope, position=position) |
| 147 | return Output(spec) |
| 148 | |
| 149 | |
| 150 | def put_input(name: str, type: str = 'text', *, label: str = '', value: str = None, placeholder: str = None, |
no test coverage detected
searching dependent graphs…