重置pysheet中单元格的背景颜色

Reset the background color of a Cell in pysheet

正在尝试重置链接单元格的颜色。

看一个没有颜色的单元格,颜色属性为(None, None, None, None)

所以我尝试了:

cell.color = (None, None, None, None)

cell.color = None

都加注

TypeError: '<' not supported between instances of 'NoneType' and 'int'

pysheets 支持重置颜色吗?

根据Google Sheets API you need to pass a RGBA value,这意味着您需要传入RGBA光谱可接受的值(0-255)。

尝试cell.color = (0,0,0,0),序列中的第四位数字指定透明通道。

希望对您有所帮助。

要重置颜色,您可以执行以下操作:

cell.color = ()