(self)
| 2233 | |
| 2234 | @property |
| 2235 | def _control_inputs(self): |
| 2236 | logging.warning("Operation._control_inputs is private, use " |
| 2237 | "Operation.control_inputs instead. " |
| 2238 | "Operation._control_inputs will eventually be removed.") |
| 2239 | return self.control_inputs |
| 2240 | |
| 2241 | @_control_inputs.setter |
| 2242 | def _control_inputs(self, value): |
nothing calls this directly
no test coverage detected