(self, **kwargs: t.Any)
| 2386 | info_text = "an instance of the same type as the receiver or None" |
| 2387 | |
| 2388 | def __init__(self, **kwargs: t.Any) -> None: |
| 2389 | super().__init__(None, **kwargs) |
| 2390 | |
| 2391 | def validate(self, obj: t.Any, value: t.Any) -> HasTraits | None: |
| 2392 | # What if value is a superclass of obj.__class__? This is |