i'm using the gspread module and when i try to append new row, with some values, using the code below:
sheet.append_row(['image1', '=IMAGE()'])
it inputs the values in the next available row (as expected) but in the cell that's supposed to have =IMAGE() value, it has '=IMAGE()
it is preceded by a single quote.
the first cell is fine, with image1 as intended, without any single quote.
why is that so? how do i remove it?