Skip to content

Commit

Permalink
fix: null condition
Browse files Browse the repository at this point in the history
  • Loading branch information
saravmajestic committed Dec 11, 2024
1 parent 0cff308 commit dfd43ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/datapilot/core/platforms/dbt/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def run(self):

if self.token and self.instance_name and self.backend_url:
llm_check_results = self.run_llm_checks()
llm_reports = llm_check_results["results"]
llm_reports = llm_check_results.get("results", [])
llm_insights = {}
for report in llm_reports:
for answer in report["answer"]:
Expand Down

0 comments on commit dfd43ea

Please sign in to comment.