diff options
Diffstat (limited to 'hommaexceli_py/sheets_client.py')
| -rw-r--r-- | hommaexceli_py/sheets_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hommaexceli_py/sheets_client.py b/hommaexceli_py/sheets_client.py index 95721b3..242dca8 100644 --- a/hommaexceli_py/sheets_client.py +++ b/hommaexceli_py/sheets_client.py @@ -86,7 +86,7 @@ def fetch_sheet_data(service: Resource) -> list[SheetsRow]: rows = result.get("values", []) logging.info(f"Fetched {len(rows)} rows of data") - return list(map(_row_to_dataclass, rows)) + return [_row_to_dataclass(row) for row in rows] def update_sheet_last_done_column( |
