Describe the bugTable.merge_ranges does not always produce valid data
To Reproduce
from numbers_parser import Document
doc = Document("tests/data/test-all-formulas.numbers")
for sheet in doc.sheets:
for table in sheet.tables:
print(f"{sheet.name}:{table.name} -", table.merge_ranges)
Expected behavior
tests/data/test-all-formulas.numbers contains no merged cells; all ranges should be empty lists.
Describe the bug
Table.merge_ranges
does not always produce valid dataTo Reproduce
Expected behavior
tests/data/test-all-formulas.numbers
contains no merged cells; all ranges should be empty lists.