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