Skip to content

Commit

Permalink
more debug
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajastro committed Mar 5, 2025
1 parent 4575fbb commit ab188e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosmos/dbt/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def parse_dbt_ls_output(project_path: Path | None, ls_stdout: str) -> dict[str,
try:
node = DbtNode(
unique_id=node_dict["unique_id"],
package_name=node_dict["package_name"],
package_name=node_dict.get("package_name"),
resource_type=DbtResourceType(node_dict["resource_type"]),
depends_on=node_dict.get("depends_on", {}).get("nodes", []),
file_path=base_path / node_dict["original_file_path"],
Expand Down

0 comments on commit ab188e5

Please sign in to comment.