We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 55483f3 + b093d0c commit 1605f0cCopy full SHA for 1605f0c
1 file changed
src/webapp/validation.py
@@ -106,12 +106,10 @@ def validate_dataset(
106
incoming = set(df.columns)
107
108
# 1) load schemas
109
- base_schema_path = "src/webapp/validation_schemas/base_schema.json"
+ base_schema_path = "validation_schemas/base_schema.json"
110
base_schema = load_json(base_schema_path)
111
ext_schema = None
112
- extension_schema_path = (
113
- f"src/webapp/validation_schemas/{institution_id}_schema_extension.json"
114
- )
+ extension_schema_path = f"validation_schemas/{institution_id}_schema_extension.json"
115
if extension_schema_path and os.path.exists(extension_schema_path):
116
ext_schema = load_json(extension_schema_path)
117
0 commit comments