mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-13 13:48:28 +03:00
fix: max chars on sheets cell
This commit is contained in:
@@ -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
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user