(self, *args, **kwargs)
| 2568 | """ |
| 2569 | |
| 2570 | def __init__(self, *args, **kwargs): |
| 2571 | self.passthrough = kwargs.pop("passthrough", False) |
| 2572 | super().__init__(*args, **kwargs) |
| 2573 | |
| 2574 | def _validate_choices(self, value): |
| 2575 | if isinstance(value, LazyReference): |