Skip to content

Commit

Permalink
fix: format commands output (#3026)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent0426 authored Jan 1, 2025
1 parent fdcfde3 commit c95cc63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flytekit/clis/sdk_in_container/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,7 @@ def _create_command(
h = h + click.style(f" (LP Name: {loaded_entity.name})", fg="yellow")
else:
if loaded_entity.__doc__:
h = h + click.style(f"{loaded_entity.__doc__}", dim=True)
h = h + click.style(f" {loaded_entity.__doc__}", dim=True)
cmd = YamlFileReadingCommand(
name=entity_name,
params=params,
Expand Down

0 comments on commit c95cc63

Please sign in to comment.