(self, fullname: str)
| 897 | return self._find_hook(lambda plugin: plugin.get_class_attribute_hook(fullname)) |
| 898 | |
| 899 | def get_class_decorator_hook(self, fullname: str) -> Callable[[ClassDefContext], None] | None: |
| 900 | return self._find_hook(lambda plugin: plugin.get_class_decorator_hook(fullname)) |
| 901 | |
| 902 | def get_class_decorator_hook_2( |
| 903 | self, fullname: str |
nothing calls this directly
no test coverage detected