Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Issue IndexingError Issue #455

Closed
wants to merge 1 commit into from
Closed

Fix Issue IndexingError Issue #455

wants to merge 1 commit into from

Conversation

fealho
Copy link
Member

@fealho fealho commented May 28, 2021

Resolve #446.

@@ -285,7 +285,7 @@ def filter_valid(self, table_data):
LOGGER.debug('%s: %s invalid rows out of %s.',
self.__class__.__name__, sum(~valid), len(valid))

return table_data[valid]
return table_data[valid.values]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@fealho would it be possible to add a unit or integration test that reproduces the error?
I would add the link of the issue in the test docstring and also make sure that it fails before making this change and it is fixed afterwards.

@fealho fealho marked this pull request as ready for review August 26, 2021 15:27
@fealho fealho requested a review from a team as a code owner August 26, 2021 15:27
@fealho fealho requested review from pvk-developer and removed request for a team August 26, 2021 15:27
@fealho fealho closed this Aug 26, 2021
@fealho fealho deleted the issue-446 branch August 26, 2021 16:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

IndexingError: Unalignable boolean
2 participants