The public constructor.
(cls, parent, **kw)
| 1657 | # todo: determine sound type limitations |
| 1658 | @classmethod |
| 1659 | def from_parent(cls, parent, **kw) -> Self: |
| 1660 | """The public constructor.""" |
| 1661 | return super().from_parent(parent=parent, **kw) |
| 1662 | |
| 1663 | def _initrequest(self) -> None: |
| 1664 | self.funcargs: dict[str, object] = {} |
nothing calls this directly
no test coverage detected