Skip to content

Commit

Permalink
[sc-29652] Skip SystemDescription if comment is empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
usefulalgorithm committed Nov 1, 2024
1 parent 6e6bb7f commit 4ecc3a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion metaphor/unity_catalog/extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ def _init_hierarchy(
]
)

if comment is not None:
if comment:
hierarchy.system_description = SystemDescription(
description=comment,
platform=AssetPlatform.UNITY_CATALOG,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "metaphor-connectors"
version = "0.14.143"
version = "0.14.144"
license = "Apache-2.0"
description = "A collection of Python-based 'connectors' that extract metadata from various sources to ingest into the Metaphor app."
authors = ["Metaphor <[email protected]>"]
Expand Down

0 comments on commit 4ecc3a4

Please sign in to comment.