Skip to content

Commit

Permalink
fix: imports in __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nsantacruz committed Feb 22, 2024
1 parent 209f6c3 commit 9ee2f9a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from app.llm_interface.sefaria_llm_interface.topic_prompt.topic_prompt_source import *
from app.llm_interface.sefaria_llm_interface.topic_prompt.topic_prompt_input import *
from app.llm_interface.sefaria_llm_interface.topic_prompt.topic_prompt_output import *
from sefaria_llm_interface.topic_prompt.topic_prompt_source import *
from sefaria_llm_interface.topic_prompt.topic_prompt_input import *
from sefaria_llm_interface.topic_prompt.topic_prompt_output import *
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import List
from dataclasses import dataclass
from app.llm_interface.sefaria_llm_interface import Topic
from app.llm_interface.sefaria_llm_interface.topic_prompt import TopicPromptSource
from sefaria_llm_interface import Topic
from sefaria_llm_interface.topic_prompt import TopicPromptSource


@dataclass
Expand Down

0 comments on commit 9ee2f9a

Please sign in to comment.