Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
RosenbergYehuda committed Dec 17, 2023
1 parent dc7bca0 commit 94d88fc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion demisto_sdk/commands/content_graph/objects/pack_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ def _enhance_pack_properties(
self.tags = self._get_pack_tags(marketplace, pack_id, content_items)
self.author = self._get_author(self.author, marketplace)
# We want to add the pipeline_id only if this is called within our repo.
self.version_info = "" if is_external_repository() else os.environ.get("CI_PIPELINE_ID", "")
self.version_info = (
"" if is_external_repository() else os.environ.get("CI_PIPELINE_ID", "")
)

def _format_metadata(
self,
Expand Down

0 comments on commit 94d88fc

Please sign in to comment.