Skip to content

Commit

Permalink
🎨 better success msgs
Browse files Browse the repository at this point in the history
  • Loading branch information
Wytamma committed Apr 24, 2024
1 parent 3cf7bb0 commit 2605c5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snk/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def install(
else:
version = installed_workflow.version

typer.secho(f"Successfully installed {installed_workflow.name} ({version})!", fg="green")
typer.secho(f"\nSuccessfully installed {installed_workflow.name} ({version})!", fg="green")


@app.command()
Expand All @@ -190,7 +190,7 @@ def uninstall(
typer.secho(e, fg="red")
raise typer.Exit(1)
if uninstalled:
typer.secho(f"Successfully uninstalled {name}!", fg="green")
typer.secho(f"\nSuccessfully uninstalled {name}!", fg="green")


@app.command()
Expand Down

0 comments on commit 2605c5e

Please sign in to comment.