Overwrite mixin default to True. Args: mixin: Whether the subclass is a mixin and should not be initialized. **kwargs: The kwargs to pass to the init_subclass method.
(cls, mixin: bool = True, **kwargs)
| 2543 | |
| 2544 | @classmethod |
| 2545 | def __init_subclass__(cls, mixin: bool = True, **kwargs): |
| 2546 | """Overwrite mixin default to True. |
| 2547 | |
| 2548 | Args: |
| 2549 | mixin: Whether the subclass is a mixin and should not be initialized. |
| 2550 | **kwargs: The kwargs to pass to the init_subclass method. |
| 2551 | """ |
| 2552 | super().__init_subclass__(mixin=mixin, **kwargs) |
| 2553 | |
| 2554 | @classmethod |
| 2555 | def get_component(cls, *children, **props) -> Component: |
nothing calls this directly
no test coverage detected