list[str]: the names of all the inputs.
(self)
| 46 | |
| 47 | @property |
| 48 | def input_names(self): |
| 49 | """ |
| 50 | list[str]: the names of all the inputs. |
| 51 | """ |
| 52 | return [k.name for k in self.get_input_signature()] |
| 53 | |
| 54 | def inputs(self): |
| 55 | """ |
nothing calls this directly
no test coverage detected