diff --git a/README.md b/README.md index 42c66a0..b657d5f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,2 @@ # instrument-registry Registry for instruments / measures such as the IAMA. - diff --git a/script/validate b/script/validate index 12cfc11..50813c3 100755 --- a/script/validate +++ b/script/validate @@ -8,11 +8,11 @@ import yaml from jsonschema import validate # Load the YAML file -with open(sys.argv[2], 'r') as yaml_file: +with open(sys.argv[2], "r") as yaml_file: data = yaml.safe_load(yaml_file) # Load the JSON schema -with open(sys.argv[1], 'r') as schema_file: +with open(sys.argv[1], "r") as schema_file: schema = json.load(schema_file) # Validate the data