Skip to content

Commit 086bfa1

Browse files
fix key name of gridProperties while fetching frozen column from sheet (#83)
1 parent d04e57d commit 086bfa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gspread_pandas/spread.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ def clear_sheet(self, rows=1, cols=1, sheet=None):
590590
"frozenRowCount", 0
591591
)
592592
frozen_cols = self._sheet_metadata["properties"]["gridProperties"].get(
593-
"frozenColCount", 0
593+
"frozenColumnCount", 0
594594
)
595595

596596
row_resize = max(rows, frozen_rows + 1)

0 commit comments

Comments
 (0)