The public constructor.
(cls, parent, **kw)
| 1687 | |
| 1688 | @classmethod |
| 1689 | def from_parent(cls, parent, **kw): # todo: determine sound type limitations |
| 1690 | """The public constructor.""" |
| 1691 | return super().from_parent(parent=parent, **kw) |
| 1692 | |
| 1693 | def _initrequest(self) -> None: |
| 1694 | self.funcargs: Dict[str, object] = {} |
nothing calls this directly
no test coverage detected