We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca7dfa4 commit f960c85Copy full SHA for f960c85
1 file changed
src/webapp/validation.py
@@ -110,8 +110,10 @@ def validate_dataset(
110
base_schema_path = os.path.join(BASE_DIR, "validation_schemas/base_schema.json")
111
base_schema = load_json(base_schema_path)
112
ext_schema = None
113
-
114
- extension_schema_path = os.path.join(BASE_DIR, f"validation_schemas/{institution_id}_schema_extension.json")
+
+ extension_schema_path = os.path.join(
115
+ BASE_DIR, f"validation_schemas/{institution_id}_schema_extension.json"
116
+ )
117
if extension_schema_path and os.path.exists(extension_schema_path):
118
ext_schema = load_json(extension_schema_path)
119
0 commit comments