From 80a5960078f98ec0485a0f0de748ac213e7fe10a Mon Sep 17 00:00:00 2001 From: Mohammad Amin Date: Mon, 2 Dec 2024 16:00:16 +0330 Subject: [PATCH] fix: isort linter issues! --- utils/query_engine/subquestion_engine.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/utils/query_engine/subquestion_engine.py b/utils/query_engine/subquestion_engine.py index 54ca405..2a67c95 100644 --- a/utils/query_engine/subquestion_engine.py +++ b/utils/query_engine/subquestion_engine.py @@ -1,4 +1,3 @@ -from typing import Sequence from typing import List, Optional, Sequence, cast from llama_index.core.async_utils import run_async_tasks @@ -8,7 +7,7 @@ from llama_index.core.query_engine import SubQuestionAnswerPair, SubQuestionQueryEngine from llama_index.core.question_gen.types import BaseQuestionGenerator from llama_index.core.response_synthesizers import BaseSynthesizer -from llama_index.core.schema import QueryBundle, NodeWithScore +from llama_index.core.schema import NodeWithScore, QueryBundle from llama_index.core.tools.query_engine import QueryEngineTool from llama_index.core.utils import get_color_mapping, print_text