Skip to content

Commit

Permalink
fixup! fixup! update find_table to return correct behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
lavigne958 committed Aug 19, 2024
1 parent d62efb0 commit e9fe389
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gspread/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1082,7 +1082,7 @@ def find_table(

if col >= len(values[row]):
raise InvalidInputValue(
"given collumn for start_range is outside given values: start range column ({}) >= columns in values {}".format(
"given column for start_range is outside given values: start range column ({}) >= columns in values {}".format(
col, len(values[row])
)
)
Expand Down

0 comments on commit e9fe389

Please sign in to comment.