(self, state)
| 2631 | self._handle_props.update(handle_props) |
| 2632 | |
| 2633 | def _validate_state(self, state): |
| 2634 | supported_state = [ |
| 2635 | key for key, value in self._state_modifier_keys.items() |
| 2636 | if key != 'clear' and value != 'not-applicable' |
| 2637 | ] |
| 2638 | _api.check_in_list(supported_state, state=state) |
| 2639 | |
| 2640 | def add_state(self, state): |
| 2641 | """ |
no outgoing calls
no test coverage detected