(self, inst: t.Any, cls: t.Any = None)
| 1262 | return self._init_call(*args, **kwargs) |
| 1263 | |
| 1264 | def __get__(self, inst: t.Any, cls: t.Any = None) -> types.MethodType | EventHandler: |
| 1265 | if inst is None: |
| 1266 | return self |
| 1267 | return types.MethodType(self.func, inst) |
| 1268 | |
| 1269 | |
| 1270 | class ObserveHandler(EventHandler): |
nothing calls this directly
no outgoing calls
no test coverage detected