fix: broken subprocess command and tuple unpacking in app.py #19
Reference in New Issue
Block a user
Delete Branch "fix/app-critical-bugs"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
sys.executableinstead of hardcoded"python"for portabilityrun_prompt_pipeline()— was unpacking only 2, causingValueErrorat runtimeBoth bugs made the Streamlit app completely non-functional.
Closes #1, closes #2
Test plan
python -c "import ast; ast.parse(open('app.py').read())"— no syntax errorsstreamlit run app.pyand verify card generation works end-to-end