Skip to content

Commit

Permalink
pytest failing, import error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ryansurf committed May 30, 2024
1 parent 7638c37 commit 1db9e49
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@

sys.path.append(str(Path(__file__).parent.parent))

from src import api, helper
from src import api, helper, settings

from settings import GPTSettings

# Load environment variables from .env file
env = GPTSettings()
env = settings.GPTSettings()
gpt_prompt = env.GPT_PROMPT


Expand Down

0 comments on commit 1db9e49

Please sign in to comment.