We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e109e14 commit 11c30caCopy full SHA for 11c30ca
pyxlsb2/worksheet.py
@@ -85,7 +85,7 @@ def rows(self, sparse=True):
85
elif rectype == rt.CELL_ISST:
86
if rec.v is not None and rec.c is not None:
87
if 0 <= rec.v < len(self.workbook.stringtable._strings):
88
- value = self.workbook.get_shared_string(rec.v)
+ value = self.workbook.stringtable._strings[rec.v]
89
else:
90
value = rec.v
91
row._add_cell(rec.c, value, rec.f, rec.style)
0 commit comments