Skip to content

Commit a3db9ce

Browse files
committed
table data checks
1 parent 6022d2c commit a3db9ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gdocs/managers/table_operation_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ async def create_and_populate_table(
5555
Returns:
5656
Tuple of (success, message, metadata)
5757
"""
58-
logger.debug(f"Creating table at index {index}, dimensions: {len(table_data)}x{len(table_data[0]) if table_data else 0}")
58+
logger.debug(f"Creating table at index {index}, dimensions: {len(table_data)}x{len(table_data[0]) if table_data and len(table_data) > 0 else 0}")
5959

6060
# Validate input data
6161
is_valid, error_msg = validate_table_data(table_data)

0 commit comments

Comments
 (0)