(self, trait: TraitType[t.Any, t.Any])
| 380 | """Class for deferred-evaluation of config from CLI""" |
| 381 | |
| 382 | def get_value(self, trait: TraitType[t.Any, t.Any]) -> t.Any: |
| 383 | raise NotImplementedError("Implement in subclasses") |
| 384 | |
| 385 | def _super_repr(self) -> str: |
| 386 | # explicitly call super on direct parent |
no outgoing calls