We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6022d2c commit a3db9ceCopy full SHA for a3db9ce
gdocs/managers/table_operation_manager.py
@@ -55,7 +55,7 @@ async def create_and_populate_table(
55
Returns:
56
Tuple of (success, message, metadata)
57
"""
58
- logger.debug(f"Creating table at index {index}, dimensions: {len(table_data)}x{len(table_data[0]) if table_data else 0}")
+ 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}")
59
60
# Validate input data
61
is_valid, error_msg = validate_table_data(table_data)
0 commit comments