From 1d66ca064953fc08555c69a91391d71677c273ea Mon Sep 17 00:00:00 2001 From: Lars Date: Sun, 11 Jan 2026 11:16:30 +0100 Subject: [PATCH] Update chunking_utils.py to include Optional type hint: Add Optional to the import statement for improved type annotations, enhancing code clarity and maintainability. --- app/core/chunking/chunking_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/core/chunking/chunking_utils.py b/app/core/chunking/chunking_utils.py index 46fa28d..b0def8f 100644 --- a/app/core/chunking/chunking_utils.py +++ b/app/core/chunking/chunking_utils.py @@ -6,7 +6,7 @@ import math import yaml import logging from pathlib import Path -from typing import Dict, Any, Tuple +from typing import Dict, Any, Tuple, Optional logger = logging.getLogger(__name__)