We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffb555e commit 860b346Copy full SHA for 860b346
aiida_lammps/validation/utils.py
@@ -19,4 +19,4 @@ def validate_against_schema(data: dict, filename: Union[str, os.PathLike]):
19
with open(filename, encoding="utf8") as handler:
20
schema = json.load(handler)
21
22
- jsonschema.validate(schema=schema, instance=data)
+ jsonschema.validate(schema=schema, instance=data, cls=jsonschema.Draft4Validator)
0 commit comments