We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This filter interferes: https://github.com/SURFscz/plsc/blob/main/plsc_ordered.py#L102-L103 It filters away all False values, of which 0 is one.
False
0
What is the reason for this filter? Would filtering only None value suffice? i.e.
for key, val in record.items(): record[key] = [r for r in record[key] if r is not None]
The text was updated successfully, but these errors were encountered:
Works:
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
This filter interferes: https://github.com/SURFscz/plsc/blob/main/plsc_ordered.py#L102-L103
It filters away all
False
values, of which0
is one.What is the reason for this filter? Would filtering only None value suffice?
i.e.
The text was updated successfully, but these errors were encountered: