Skip to content

Commit 283ca99

Browse files
committed
fix: mypy
1 parent a51ca78 commit 283ca99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

silverback/_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,11 +335,11 @@ def update_workspace(
335335
elif name == "" or slug == "":
336336
raise click.UsageError("Empty string value found for name or slug.")
337337

338-
workspace = workspace_client.update(
338+
updated_workspace = workspace_client.update(
339339
name=name,
340340
slug=slug,
341341
)
342-
click.echo(f"{click.style('SUCCESS', fg='green')}: Updated '{workspace.name}'")
342+
click.echo(f"{click.style('SUCCESS', fg='green')}: Updated '{updated_workspace.name}'")
343343

344344

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

0 commit comments

Comments
 (0)