(self)
| 198 | @property |
| 199 | @has_context |
| 200 | def states_list(self): |
| 201 | if self.using_args_grouping: |
| 202 | warnings.warn( |
| 203 | "states_list is deprecated, use args_grouping instead", |
| 204 | DeprecationWarning, |
| 205 | stacklevel=2, |
| 206 | ) |
| 207 | return getattr(_get_context_value(), "states_list", []) |
| 208 | |
| 209 | @property |
| 210 | @has_context |
nothing calls this directly
no test coverage detected