Check if there are any examples. Returns: bool: True if there are examples, False otherwise.
(self)
| 128 | yield dict(zip(self.example_params, row)) |
| 129 | |
| 130 | def __bool__(self) -> bool: |
| 131 | """Check if there are any examples. |
| 132 | |
| 133 | Returns: |
| 134 | bool: True if there are examples, False otherwise. |
| 135 | """ |
| 136 | return bool(self.examples) |
| 137 | |
| 138 | |
| 139 | @dataclass(eq=False) |
nothing calls this directly
no outgoing calls
no test coverage detected