Update chunking_utils.py to include Optional type hint: Add Optional to the import statement for improved type annotations, enhancing code clarity and maintainability.

This commit is contained in:
Lars 2026-01-11 11:16:30 +01:00
parent 55b64c331a
commit 1d66ca0649

View File

@ -6,7 +6,7 @@ import math
import yaml import yaml
import logging import logging
from pathlib import Path from pathlib import Path
from typing import Dict, Any, Tuple from typing import Dict, Any, Tuple, Optional
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)