Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions gspread/worksheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,7 @@ def get_all_records(
numericise_ignore: Iterable[Union[str, int]] = [],
allow_underscores_in_numeric_literals: bool = False,
empty2zero: bool = False,
combine_merged_cells: bool = False,
) -> List[Dict[str, Union[int, float, str]]]:
"""Returns a list of dictionaries, all of them having the contents of
the spreadsheet with the head row as keys and each of these
Expand Down Expand Up @@ -562,6 +563,7 @@ def get_all_records(
entire_sheet = self.get(
value_render_option=value_render_option,
pad_values=True,
combine_merged_cells=combine_merged_cells,
)
if entire_sheet == [[]]:
# see test_get_all_records_with_all_values_blank
Expand Down
Loading