fix: max chars on sheets cell

This commit is contained in:
msramalho
2023-05-10 18:57:33 +01:00
parent e11be449e8
commit 45b982ec38

View File

@@ -96,7 +96,7 @@ class GWorksheet:
cell_updates = [ cell_updates = [
{ {
'range': self.to_a1(row, col), 'range': self.to_a1(row, col),
'values': [[val]] 'values': [[str(val)[0:49999]]]
} }
for row, col, val in cell_updates for row, col, val in cell_updates
] ]