Skip to content

Commit

Permalink
change colour
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Sola <[email protected]>
  • Loading branch information
dansola committed Oct 10, 2024
1 parent 8e42042 commit a3e9b04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flytekit/tools/repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def secho(i: Identifier, state: str = "success", reason: str = None, op: str = "
fg = "green"
nl = True
if not reason:
reason = f"successful: {console_url}" if console_url else f"version: {i.version}"
reason = f"successful: {click.style(console_url, fg="cyan")}" if console_url else f"version: {i.version}"

Check warning on line 213 in flytekit/tools/repo.py

View check run for this annotation

Codecov / codecov/patch

flytekit/tools/repo.py#L213

Added line #L213 was not covered by tests
elif state == "failed":
state_ind = "\r[x]"
fg = "red"
Expand Down

0 comments on commit a3e9b04

Please sign in to comment.