(self, fullname: str)
| 15 | return None |
| 16 | |
| 17 | def get_base_class_hook(self, fullname: str) -> Callable[[ClassDefContext], None] | None: |
| 18 | sym = self.lookup_fully_qualified(fullname) |
| 19 | if sym and isinstance(sym.node, TypeInfo): |
| 20 | if sym.node.metadata.get("magic"): |
| 21 | return add_magic_hook |
| 22 | return None |
| 23 | |
| 24 | |
| 25 | def add_info_hook(ctx: DynamicClassDefContext) -> None: |
nothing calls this directly
no test coverage detected