Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the multi-dimensional error fallback from NestedFrame.query.
This logic was copied from pd.DataFrame.query, and the accompanying comment said that it was to handle an occasional case where `self.loc[b]` would raise an error on a multi-dimensional `b`, but `self[b]` would succeed. I can't cause this error with `.loc` anymore, so the code coverage complains about the unexercised exception clause. Removing it since the limitation that inspired it seems to be gone now.
- Loading branch information