Skip to content
Snippets Groups Projects

Filling XLSX: Everything except multiple choice.

Merged Daniel Hornung requested to merge f-json-table into dev
All threads resolved!
Compare and Show latest version
6 files
+ 64
56
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -314,7 +314,7 @@ out: union[dict, None]
else:
value = content[0]
if isinstance(value, str):
value = ILLEGAL_CHARACTERS_RE.sub("", value)
value = ILLEGAL_CHARACTERS_RE.sub("", value)
path_str = p2s(path)
assert path_str not in insertables
insertables[path_str] = value
@@ -384,7 +384,7 @@ validation_schema: dict, optional
validate(data, validation_schema, format_checker=FormatChecker())
except ValidationError as ve:
print(ve.message)
raise RuntimeError("Validation failed")
raise ve
else:
print("No validation schema given, continue at your own risk.")
Loading