From 45b982ec3876888072af4bf42bf649635a32f577 Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Wed, 10 May 2023 18:57:33 +0100 Subject: [PATCH] fix: max chars on sheets cell --- src/auto_archiver/utils/gworksheet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auto_archiver/utils/gworksheet.py b/src/auto_archiver/utils/gworksheet.py index 0f8a271..1b85eab 100644 --- a/src/auto_archiver/utils/gworksheet.py +++ b/src/auto_archiver/utils/gworksheet.py @@ -96,7 +96,7 @@ class GWorksheet: cell_updates = [ { 'range': self.to_a1(row, col), - 'values': [[val]] + 'values': [[str(val)[0:49999]]] } for row, col, val in cell_updates ]