(self)
| 174 | @property |
| 175 | @has_context |
| 176 | def outputs_list(self): |
| 177 | if self.using_outputs_grouping: |
| 178 | warnings.warn( |
| 179 | "outputs_list is deprecated, use outputs_grouping instead", |
| 180 | DeprecationWarning, |
| 181 | stacklevel=2, |
| 182 | ) |
| 183 | |
| 184 | return getattr(_get_context_value(), "outputs_list", []) |
| 185 | |
| 186 | @property |
| 187 | @has_context |
nothing calls this directly
no test coverage detected