diff --git a/python/semantic_kernel/contents/history_reducer/chat_history_summarization_reducer.py b/python/semantic_kernel/contents/history_reducer/chat_history_summarization_reducer.py index 2518a63a0be2..fbf795970619 100644 --- a/python/semantic_kernel/contents/history_reducer/chat_history_summarization_reducer.py +++ b/python/semantic_kernel/contents/history_reducer/chat_history_summarization_reducer.py @@ -11,7 +11,7 @@ if sys.version < "3.12": from typing_extensions import override # pragma: no cover else: - from typing import override # pragma: no cover + from typing import override # type: ignore # pragma: no cover from pydantic import Field diff --git a/python/semantic_kernel/contents/history_reducer/chat_history_truncation_reducer.py b/python/semantic_kernel/contents/history_reducer/chat_history_truncation_reducer.py index f317fc711065..a09cb43ab0f9 100644 --- a/python/semantic_kernel/contents/history_reducer/chat_history_truncation_reducer.py +++ b/python/semantic_kernel/contents/history_reducer/chat_history_truncation_reducer.py @@ -11,7 +11,7 @@ if sys.version < "3.12": from typing_extensions import override # pragma: no cover else: - from typing import override # pragma: no cover + from typing import override # type: ignore # pragma: no cover from semantic_kernel.contents.history_reducer.chat_history_reducer import ChatHistoryReducer from semantic_kernel.contents.history_reducer.chat_history_reducer_utils import (