Skip to content

Commit 55d496a

Browse files
authored
remove not needed imports (neo4j#45)
1 parent a16ea91 commit 55d496a

File tree

5 files changed

+1
-8
lines changed

5 files changed

+1
-8
lines changed

api/src/components/base_component.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from abc import ABC, abstractmethod
2-
from typing import Callable, List, Union
2+
from typing import List, Union
33

44

55
class BaseComponent(ABC):

api/src/components/data_disambiguation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import json
22
import re
33
from itertools import groupby
4-
from typing import List
54

65
from components.base_component import BaseComponent
76
from utils.unstructured_data_utils import (

api/src/embedding/openai.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
from typing import (
2-
List,
3-
)
4-
51
import openai
62
from embedding.base_embedding import BaseEmbedding
73

api/src/llm/openai.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from typing import (
2-
Any,
32
Callable,
43
List,
54
)

api/src/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import json
21
import os
32
from typing import Optional
43

0 commit comments

Comments
 (0)