Skip to content

Commit

Permalink
added exposures property to manifest
Browse files Browse the repository at this point in the history
automatic commit by git-black, original commits:
  d60f6bc
  • Loading branch information
fuchsst authored and iknox-fa committed Feb 8, 2022
1 parent 4646615 commit 2801220
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/dbt/contracts/graph/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -658,9 +658,9 @@ def build_flat_graph(self):
manifest!
"""
self.flat_graph = {
'exposures': {
k: v.to_dict(omit_none=False)
for k, v in self.exposures.items()
"exposures": {k: v.to_dict(omit_none=False) for k, v in self.exposures.items()},
"metrics": {k: v.to_dict(omit_none=False) for k, v in self.metrics.items()},
"nodes": {k: v.to_dict(omit_none=False) for k, v in self.nodes.items()},
},
'metrics': {
k: v.to_dict(omit_none=False)
Expand Down

0 comments on commit 2801220

Please sign in to comment.