Skip to content

Commit

Permalink
Fix build for programmer ui
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnlewis committed Aug 23, 2024
1 parent 1b07c76 commit e6ea78c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
include README.md
include ui.py
File renamed without changes.
2 changes: 1 addition & 1 deletion programmer/programmer.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def main():
elif args.command == "ui":
module_path = os.path.abspath(__file__)
module_dir = os.path.dirname(module_path)
ui_path = os.path.join(module_dir, "..", "ui.py")
ui_path = os.path.join(module_dir, "..", "programmer-ui", "ui.py")
subprocess.run(["streamlit", "run", ui_path])
return
elif args.command == "prompt":
Expand Down

0 comments on commit e6ea78c

Please sign in to comment.