(self, instance_cls: Type[_ET])
| 179 | return self._events._listen(event_key, **kw) |
| 180 | |
| 181 | def _for_class(self, instance_cls: Type[_ET]) -> _Dispatch[_ET]: |
| 182 | return self.__class__(self, instance_cls) |
| 183 | |
| 184 | def _for_instance(self, instance: _ET) -> _Dispatch[_ET]: |
| 185 | instance_cls = instance.__class__ |
no outgoing calls
no test coverage detected