(
self, fullname: str
)
| 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 |
| 904 | ) -> Callable[[ClassDefContext], bool] | None: |
| 905 | return self._find_hook(lambda plugin: plugin.get_class_decorator_hook_2(fullname)) |
| 906 | |
| 907 | def get_metaclass_hook(self, fullname: str) -> Callable[[ClassDefContext], None] | None: |
| 908 | return self._find_hook(lambda plugin: plugin.get_metaclass_hook(fullname)) |
nothing calls this directly
no test coverage detected