(cls, **kwargs: Any)
| 32 | """ |
| 33 | |
| 34 | def __init_subclass__(cls, **kwargs: Any) -> None: |
| 35 | super().__init_subclass__(**kwargs) |
| 36 | raise NotImplementedError( |
| 37 | "GraphKnowledge is a design-intent placeholder; subclassing is " |
| 38 | "blocked until the shape is finalised. Open a tracking issue " |
| 39 | "before lifting this guard." |
| 40 | ) |
nothing calls this directly
no outgoing calls
no test coverage detected