(inputs)
| 229 | |
| 230 | |
| 231 | def inputs_to_vals(inputs): |
| 232 | return [ |
| 233 | [ii.get("value") for ii in i] if isinstance(i, list) else i.get("value") |
| 234 | for i in inputs |
| 235 | ] |
| 236 | |
| 237 | |
| 238 | def run_command_with_process(cmd): |
no test coverage detected
searching dependent graphs…