Commit b71a67d
fix(installer): add missing verbose/quiet args to run_build_ast_graph call
Fixes CI failure after commit 39b5e0a.
The run_build_ast_graph() function signature requires:
- source_root (required)
- kuzu_path (required)
- verbose (required) ← was missing
- quiet (optional)
- env (optional)
The call in installer.py was missing verbose and quiet args, causing:
"internal error: run_build_ast_graph() missing 1 required keyword-only argument: 'verbose'"
Added verbose=not quiet and quiet=quiet to match the pattern used in cli.py.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>1 parent 39b5e0a commit b71a67d
1 file changed
Lines changed: 2 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
796 | 796 | | |
797 | 797 | | |
798 | 798 | | |
| 799 | + | |
| 800 | + | |
799 | 801 | | |
800 | 802 | | |
801 | 803 | | |
| |||
0 commit comments