(self)
| 31 | self.__hook_caller = hook_caller |
| 32 | |
| 33 | def __dir__(self): |
| 34 | return dir(self.__hook_caller) |
| 35 | |
| 36 | def __getattr__(self, key, _wraps=functools.wraps): |
| 37 | hook = getattr(self.__hook_caller, key) |
nothing calls this directly
no outgoing calls
no test coverage detected