Skip to content

Commit 6b03af6

Browse files
committed
Fix formatting
1 parent 6192692 commit 6b03af6

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

docs/examples_notebooks/api_overview.ipynb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@
2828
"from pathlib import Path\n",
2929
"from pprint import pprint\n",
3030
"\n",
31-
"import graphrag.api as api\n",
3231
"import pandas as pd\n",
3332
"from graphrag.config.load_config import load_config\n",
34-
"from graphrag.index.typing.pipeline_run_result import PipelineRunResult"
33+
"from graphrag.index.typing.pipeline_run_result import PipelineRunResult\n",
34+
"\n",
35+
"import graphrag.api as api"
3536
]
3637
},
3738
{

docs/examples_notebooks/input_documents.ipynb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@
3030
"from pathlib import Path\n",
3131
"from pprint import pprint\n",
3232
"\n",
33-
"import graphrag.api as api\n",
3433
"import pandas as pd\n",
3534
"from graphrag.config.load_config import load_config\n",
36-
"from graphrag.index.typing.pipeline_run_result import PipelineRunResult"
35+
"from graphrag.index.typing.pipeline_run_result import PipelineRunResult\n",
36+
"\n",
37+
"import graphrag.api as api"
3738
]
3839
},
3940
{

unified-search-app/app/app_logic.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import logging
88
from typing import TYPE_CHECKING
99

10-
import graphrag.api as api
1110
import streamlit as st
1211
from knowledge_loader.data_sources.loader import (
1312
create_datasource,
@@ -18,6 +17,8 @@
1817
from state.session_variables import SessionVariables
1918
from ui.search import display_search_result
2019

20+
import graphrag.api as api
21+
2122
if TYPE_CHECKING:
2223
import pandas as pd
2324

0 commit comments

Comments
 (0)