Skip to content

Commit

Permalink
Fix the stack component describe CLI output (#2001)
Browse files Browse the repository at this point in the history
* Fix the stack component describe CLI output

* Auto-update of E2E template

---------

Co-authored-by: GitHub Actions <[email protected]>
  • Loading branch information
stefannica and actions-user authored Nov 6, 2023
1 parent 023e9b1 commit d7f685f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/zenml/cli/stack_components.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,12 @@ def describe_stack_component_command(name_id_or_prefix: str) -> None:
if active_components:
active_component_id = active_components[0].id

cli_utils.print_stack_component_configuration(
component=component_,
active_status=component_.id == active_component_id,
)
cli_utils.print_stack_component_configuration(
component=component_,
active_status=component_.id == active_component_id,
)

print_model_url(get_component_url(active_components[0]))
print_model_url(get_component_url(component_))

return describe_stack_component_command

Expand Down

0 comments on commit d7f685f

Please sign in to comment.