Skip to content

Commit

Permalink
fix key name of gridProperties while fetching frozen column from sheet (
Browse files Browse the repository at this point in the history
  • Loading branch information
tekendratimsina authored Jan 18, 2022
1 parent d04e57d commit 086bfa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gspread_pandas/spread.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ def clear_sheet(self, rows=1, cols=1, sheet=None):
"frozenRowCount", 0
)
frozen_cols = self._sheet_metadata["properties"]["gridProperties"].get(
"frozenColCount", 0
"frozenColumnCount", 0
)

row_resize = max(rows, frozen_rows + 1)
Expand Down

0 comments on commit 086bfa1

Please sign in to comment.