()
| 2069 | false_var, true_var = inputs |
| 2070 | |
| 2071 | def start_select_input(): |
| 2072 | try: |
| 2073 | return select_input(inputs, mask) |
| 2074 | except Exception as e: |
| 2075 | raise RuntimeError( |
| 2076 | f"Exceptions thrown while doing select_input on {name}:\n{e}" |
| 2077 | ) |
| 2078 | |
| 2079 | if isinstance(false_var, UndefinedVar) and isinstance( |
| 2080 | true_var, UndefinedVar |
nothing calls this directly
no test coverage detected