(self, fullname: str)
| 865 | return None |
| 866 | |
| 867 | def get_function_hook(self, fullname: str) -> Callable[[FunctionContext], Type] | None: |
| 868 | return self._find_hook(lambda plugin: plugin.get_function_hook(fullname)) |
| 869 | |
| 870 | def get_method_signature_hook( |
| 871 | self, fullname: str |
nothing calls this directly
no test coverage detected