From 1a15eb5818079ce06a58423ba90a3da9cb591a07 Mon Sep 17 00:00:00 2001 From: justin melvin Date: Fri, 27 Nov 2020 20:51:52 -0800 Subject: [PATCH] Fix function arguments --- turbot/sheets.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/turbot/sheets.py b/turbot/sheets.py index 622e8c8..43b4f29 100644 --- a/turbot/sheets.py +++ b/turbot/sheets.py @@ -81,8 +81,7 @@ def sheets_create_for_puzzle(turb, puzzle): def renameSheet(turb, url, newName): id = extractIdFromSheetUrl(url) - turb.sheets.batchUpdate(id, - body={ + turb.sheets.batchUpdate(body={ "updateSheetProperties": { "properties": { "sheetId": id, -- 2.43.0