Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurpulkit committed Jun 5, 2024
1 parent 7d3f69d commit 2d9b4ea
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from datapilot.core.platforms.dbt.constants import SINGULAR
from datapilot.core.platforms.dbt.schemas.manifest import AltimateDBTContract
from datapilot.core.platforms.dbt.schemas.manifest import AltimateDependsOn
from datapilot.core.platforms.dbt.schemas.manifest import AltimateDocs
from datapilot.core.platforms.dbt.schemas.manifest import AltimateExposureType
from datapilot.core.platforms.dbt.schemas.manifest import AltimateExternalTable
from datapilot.core.platforms.dbt.schemas.manifest import AltimateFileHash
Expand Down Expand Up @@ -175,7 +176,7 @@ def _get_macro(self, macro: MacroNode) -> AltimateManifestMacroNode:
),
description=macro.description,
meta=macro.meta,
docs=macro.docs,
docs=AltimateDocs(show=macro.docs.show, node_color=macro.docs.node_color) if macro.docs else None,
patch_path=macro.patch_path,
arguments=[AltimateMacroArgument(**arg.dict()) for arg in macro.arguments] if macro.arguments else None,
created_at=macro.created_at,
Expand Down

0 comments on commit 2d9b4ea

Please sign in to comment.