(
self,
state: InstanceState[Any],
dict_: _InstanceDict,
value: Any,
initiator: Optional[AttributeEventToken] = None,
passive: PassiveFlag = PASSIVE_OFF,
check_old: Any = None,
pop: bool = False,
)
| 1168 | ) |
| 1169 | |
| 1170 | def set( |
| 1171 | self, |
| 1172 | state: InstanceState[Any], |
| 1173 | dict_: _InstanceDict, |
| 1174 | value: Any, |
| 1175 | initiator: Optional[AttributeEventToken] = None, |
| 1176 | passive: PassiveFlag = PASSIVE_OFF, |
| 1177 | check_old: Any = None, |
| 1178 | pop: bool = False, |
| 1179 | ) -> None: |
| 1180 | raise NotImplementedError() |
| 1181 | |
| 1182 | def delete(self, state: InstanceState[Any], dict_: _InstanceDict) -> None: |
| 1183 | raise NotImplementedError() |
no outgoing calls
no test coverage detected