Skip to content
Snippets Groups Projects

ENH: add framework for converting json schema into table templates

Merged Henrik tom Wörden requested to merge f-more-jsonschema-export into dev
2 files
+ 14
28
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -31,7 +31,7 @@ def _fill_leaves(json_doc: dict, workbook):
for el in value:
if isinstance(el, dict):
_fill_leaves(el, workbook)
wb.cell(1, 2, el)
workbook.cell(1, 2, el)
def _get_row_type_column(worksheet):
Loading