(
self, fullname: str
)
| 911 | return self._find_hook(lambda plugin: plugin.get_base_class_hook(fullname)) |
| 912 | |
| 913 | def get_customize_class_mro_hook( |
| 914 | self, fullname: str |
| 915 | ) -> Callable[[ClassDefContext], None] | None: |
| 916 | return self._find_hook(lambda plugin: plugin.get_customize_class_mro_hook(fullname)) |
| 917 | |
| 918 | def get_dynamic_class_hook( |
| 919 | self, fullname: str |
nothing calls this directly
no test coverage detected