]> git.cworth.org Git - turbot/commit
Switch from using append() to update() for inserting into a spreadsheet
authorCarl Worth <cworth@cworth.org>
Wed, 13 Jan 2021 04:03:36 +0000 (20:03 -0800)
committerCarl Worth <cworth@cworth.org>
Wed, 13 Jan 2021 04:03:36 +0000 (20:03 -0800)
commit375bba612d7f18369301f2e75529c07a9cc81bf8
tree338e92b619d31ac6a3cde71b75ca718758e66033
parentc7c34060b8469fcb6c84ad8d850896ec2b0e7b88
Switch from using append() to update() for inserting into a spreadsheet

The append() method was the entirely wrong thing: It puts data in as
new rows below existing data. The update() method does what we want,
(sets data at a specific range).
turbot/sheets.py