Skip to content

Commit ae7423c

Browse files
committed
updated fields
1 parent 26380e3 commit ae7423c

File tree

1 file changed

+3
-4
lines changed
  • src/datapilot/core/platforms/dbt/cli

1 file changed

+3
-4
lines changed

src/datapilot/core/platforms/dbt/cli/cli.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,9 @@ def project_health(
108108
for check in llm_insights:
109109
click.echo(f"Check: {check['name']}")
110110
for answer in check["answer"]:
111-
click.echo(f"Rule: {answer['Rule']}")
112-
click.echo(f"Location: {answer['Location']}")
113-
click.echo(f"Issue: {answer['Issue']}")
114-
click.echo(f"Fix: {answer['Fix']}")
111+
click.echo(f"Path: {answer['path']}")
112+
click.echo(f"Reason to Flag: {answer['reason_to_flag']}")
113+
click.echo(f"Recommendation: {answer['recommendation']}")
115114
click.echo("\n")
116115

117116

0 commit comments

Comments
 (0)