lots of fixes

This commit is contained in:
Taylor Wilsdon
2025-08-10 15:56:18 -04:00
parent 543f85ac1c
commit 5bcd149f40
7 changed files with 141 additions and 57 deletions

View File

@@ -5,7 +5,7 @@ This module provides utility functions for common Google Docs operations
to simplify the implementation of document editing tools.
"""
import logging
from typing import List, Dict, Any, Optional, Tuple
from typing import Dict, Any, Optional
logger = logging.getLogger(__name__)
@@ -15,7 +15,7 @@ def build_text_style(
underline: bool = None,
font_size: int = None,
font_family: str = None
) -> Tuple[Dict[str, Any], List[str]]:
) -> tuple[Dict[str, Any], list[str]]:
"""
Build text style object for Google Docs API requests.