Skip to content

Commit

Permalink
Fix #11000 #11001: Add doc_blocks to manifest for nodes and columns
Browse files Browse the repository at this point in the history
  • Loading branch information
aranke committed Jan 21, 2025
1 parent d80431a commit c344b2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbt/parser/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -1661,8 +1661,8 @@ def _check_manifest(manifest: Manifest, config: RuntimeConfig) -> None:

def _get_doc_blocks(s: str) -> Tuple[List[List[str]], bool]:
ast = parse(s)
has_doc_blocks = False
doc_blocks: List[List[str]] = []
has_doc_blocks = False

if not hasattr(ast, "body"):
return doc_blocks, has_doc_blocks

Check warning on line 1668 in core/dbt/parser/manifest.py

View check run for this annotation

Codecov / codecov/patch

core/dbt/parser/manifest.py#L1668

Added line #L1668 was not covered by tests
Expand Down

0 comments on commit c344b2c

Please sign in to comment.