(self, names: tuple[Sentinel | str, ...])
| 1278 | |
| 1279 | class ValidateHandler(EventHandler): |
| 1280 | def __init__(self, names: tuple[Sentinel | str, ...]) -> None: |
| 1281 | self.trait_names = names |
| 1282 | |
| 1283 | def instance_init(self, inst: HasTraits) -> None: |
| 1284 | inst._register_validator(self, self.trait_names) |
nothing calls this directly
no outgoing calls
no test coverage detected