Skip to content
This repository was archived by the owner on Feb 16, 2026. It is now read-only.

Commit 221dd40

Browse files
committed
fix: streamlit executable path
1 parent 0e79f55 commit 221dd40

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

codeqai/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def run():
146146
spinner.stop()
147147

148148
if args.action == "app":
149-
subprocess.run(["streamlit", "run", "codeqai/streamlit.py"])
149+
subprocess.run(["streamlit", "run", "streamlit.py"])
150150
else:
151151
spinner = yaspin(text="💾 Loading vector store...", color="green")
152152
spinner.start()

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "codeqai"
3-
version = "0.0.12"
3+
version = "0.0.13"
44
description = ""
55
authors = ["fynnfluegge <fynnfluegge@gmx.de>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)