Broken subprocess command construction in app.py #1
Reference in New Issue
Block a user
Delete Branch "%!s()"
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?
Description
The subprocess command in
app.py(lines 35-40) is fundamentally broken. All CLI flags are concatenated into a single string argument instead of being separate list elements:Problems
"python prompt_to_card_pipeline.py "— trailing space, andpython+ script should be two separate list elementsExpected fix
Impact
The Streamlit app cannot generate any card — every pipeline invocation fails silently.