Skip to content

Commit 7556847

Browse files
[autofix.ci] apply automated fixes
1 parent bf86aed commit 7556847

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/backend/tests/unit/base/tools/test_component_toolkit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33

44
import pytest
55
from lfx.base.tools.component_tool import ComponentToolkit
6+
from lfx.components.data_source.sql_executor import SQLComponent
67
from lfx.components.input_output.chat_output import ChatOutput
78
from lfx.components.langchain_utilities import ToolCallingAgentComponent
89
from lfx.components.openai.openai_chat_model import OpenAIModelComponent
910
from lfx.components.tools.calculator import CalculatorToolComponent
10-
from lfx.components.data_source.sql_executor import SQLComponent
1111
from lfx.graph.graph.base import Graph
1212
from pydantic import BaseModel
1313

src/lfx/src/lfx/components/data_source/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
from lfx.components.data_source.mock_data import MockDataGeneratorComponent
1212
from lfx.components.data_source.news_search import NewsSearchComponent
1313
from lfx.components.data_source.rss import RSSReaderComponent
14+
from lfx.components.data_source.sql_executor import SQLComponent
1415
from lfx.components.data_source.url import URLComponent
1516
from lfx.components.data_source.web_search import WebSearchComponent
16-
from lfx.components.data_source.sql_executor import SQLComponent
1717

1818
_dynamic_imports = {
1919
"APIRequestComponent": "api_request",
@@ -34,9 +34,9 @@
3434
"MockDataGeneratorComponent",
3535
"NewsSearchComponent",
3636
"RSSReaderComponent",
37+
"SQLComponent",
3738
"URLComponent",
3839
"WebSearchComponent",
39-
"SQLComponent",
4040
]
4141

4242

0 commit comments

Comments
 (0)