Skip to content

Commit 11c30ca

Browse files
FIX - problem in using get_shared_string function using stringtable directly
1 parent e109e14 commit 11c30ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyxlsb2/worksheet.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def rows(self, sparse=True):
8585
elif rectype == rt.CELL_ISST:
8686
if rec.v is not None and rec.c is not None:
8787
if 0 <= rec.v < len(self.workbook.stringtable._strings):
88-
value = self.workbook.get_shared_string(rec.v)
88+
value = self.workbook.stringtable._strings[rec.v]
8989
else:
9090
value = rec.v
9191
row._add_cell(rec.c, value, rec.f, rec.style)

0 commit comments

Comments
 (0)