Skip to content

Commit

Permalink
Minor: Fix dbt source file issue (#18903)
Browse files Browse the repository at this point in the history
  • Loading branch information
SumanMaharana authored Dec 3, 2024
1 parent d783316 commit e582cb4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,9 @@ def get_dbt_objects(self) -> Iterable[DbtObjects]:
if self.context.get().dbt_file.dbt_catalog
else None,
dbt_manifest=parse_manifest(self.context.get().dbt_file.dbt_manifest),
dbt_sources=parse_sources(self.context.get().dbt_file.dbt_sources),
dbt_sources=parse_sources(self.context.get().dbt_file.dbt_sources)
if self.context.get().dbt_file.dbt_sources
else None,
dbt_run_results=[
parse_run_results(run_result_file)
for run_result_file in self.context.get().dbt_file.dbt_run_results
Expand Down

0 comments on commit e582cb4

Please sign in to comment.