(self)
| 186 | @property |
| 187 | @has_context |
| 188 | def inputs_list(self): |
| 189 | if self.using_args_grouping: |
| 190 | warnings.warn( |
| 191 | "inputs_list is deprecated, use args_grouping instead", |
| 192 | DeprecationWarning, |
| 193 | stacklevel=2, |
| 194 | ) |
| 195 | |
| 196 | return getattr(_get_context_value(), "inputs_list", []) |
| 197 | |
| 198 | @property |
| 199 | @has_context |
nothing calls this directly
no test coverage detected