Skip to content

Commit

Permalink
validator checked
Browse files Browse the repository at this point in the history
  • Loading branch information
jmmshn committed Mar 3, 2021
1 parent e0f3408 commit 336f269
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion emmet-builders/emmet/builders/vasp/materials.py
Expand Up @@ -55,6 +55,7 @@ def __init__(
Args:
tasks: Store of task documents
materials: Store of materials documents to generate
task_validation: Store for storing task validation results
query: dictionary to limit tasks to be analyzed
allowed_task_types: list of task_types that can be processed
symprec: tolerance for SPGLib spacegroup finding
Expand Down Expand Up @@ -156,7 +157,7 @@ def get_items(self) -> Iterator[List[Dict]]:
invalid_ids = {
doc[self.tasks.key]
for doc in self.task_validation.query(
{"is_valid": False}, [self.task_validation.key]
{"valid": False}, [self.task_validation.key]
)
}
else:
Expand Down

0 comments on commit 336f269

Please sign in to comment.