Skip to content

Commit

Permalink
fix: mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
dtdang committed Oct 25, 2024
1 parent a51ca78 commit 283ca99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions silverback/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,11 +335,11 @@ def update_workspace(
elif name == "" or slug == "":
raise click.UsageError("Empty string value found for name or slug.")

workspace = workspace_client.update(
updated_workspace = workspace_client.update(
name=name,
slug=slug,
)
click.echo(f"{click.style('SUCCESS', fg='green')}: Updated '{workspace.name}'")
click.echo(f"{click.style('SUCCESS', fg='green')}: Updated '{updated_workspace.name}'")


@workspaces.command(name="delete", section="Platform Commands (https://silverback.apeworx.io)")
Expand Down

0 comments on commit 283ca99

Please sign in to comment.