Return True if this callback is using dictionary or nested groupings for Input/State dependencies, or if Input and State dependencies are interleaved
(self)
| 239 | @property |
| 240 | @has_context |
| 241 | def using_args_grouping(self): |
| 242 | """ |
| 243 | Return True if this callback is using dictionary or nested groupings for |
| 244 | Input/State dependencies, or if Input and State dependencies are interleaved |
| 245 | """ |
| 246 | return getattr(_get_context_value(), "using_args_grouping", []) |
| 247 | |
| 248 | @property |
| 249 | @has_context |
nothing calls this directly
no test coverage detected