Skip to content

Commit

Permalink
Fix node_id bug
Browse files Browse the repository at this point in the history
  • Loading branch information
courtneyholcomb committed Sep 24, 2024
1 parent 308b4fe commit f6a7882
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions metricflow/dataflow/nodes/join_to_custom_granularity.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class JoinToCustomGranularityNode(DataflowPlanNode, ABC):
time_dimension_spec: TimeDimensionSpec

def __post_init__(self) -> None: # noqa: D105
super().__post_init__()
assert (
self.time_dimension_spec.time_granularity.is_custom_granularity
), "Time granularity for time dimension spec in JoinToCustomGranularityNode must be qualified as custom granularity."
Expand Down

0 comments on commit f6a7882

Please sign in to comment.