Skip to content

Commit

Permalink
fix: streamlit executable path
Browse files Browse the repository at this point in the history
  • Loading branch information
fynnfluegge committed Feb 10, 2024
1 parent 0e79f55 commit 221dd40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion codeqai/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def run():
spinner.stop()

if args.action == "app":
subprocess.run(["streamlit", "run", "codeqai/streamlit.py"])
subprocess.run(["streamlit", "run", "streamlit.py"])
else:
spinner = yaspin(text="💾 Loading vector store...", color="green")
spinner.start()
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "codeqai"
version = "0.0.12"
version = "0.0.13"
description = ""
authors = ["fynnfluegge <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 221dd40

Please sign in to comment.