From ced63fe5299adde2e2249b01731ca94b95989630 Mon Sep 17 00:00:00 2001 From: burnash Date: Wed, 17 Feb 2021 15:18:09 +0100 Subject: [PATCH] Fixed param name in insert_cols() param list --- gspread/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gspread/models.py b/gspread/models.py index baf762864..35d5e743b 100644 --- a/gspread/models.py +++ b/gspread/models.py @@ -1566,7 +1566,7 @@ def insert_cols(self, values, col=1, value_input_option='RAW'): :param list values: List of col lists. a list of lists, with the lists each containing one col's values. Increases the number of rows if there are more values than columns. - :param int row: Start col to update(one-based). Defaults to 1 (one). + :param int col: Start col to update (one-based). Defaults to 1 (one). :param str value_input_option: (optional) Determines how input data should be interpreted. Possible values are ``RAW`` or ``USER_ENTERED``. See `ValueInputOption`_ in the Sheets API.