(self, other)
| 161 | raise |
| 162 | |
| 163 | def __getitem__(self, other): |
| 164 | if isinstance(other, Expr): |
| 165 | return Filter(self, other) |
| 166 | else: |
| 167 | return Projection(self, other) # df[["a", "b", "c"]] |
| 168 | |
| 169 | def __bool__(self): |
| 170 | raise ValueError( |
nothing calls this directly
no test coverage detected