We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
control
1 parent d17f456 commit 792dcbdCopy full SHA for 792dcbd
src/warnet/control.py
@@ -143,8 +143,10 @@ def uninstall_release(namespace, release_name):
143
# Wait for all tasks to complete and print results
144
for future in as_completed(futures):
145
result = future.result()
146
- msg = result if isinstance(result, str) else result.metadata.name
147
- console.print(f"[yellow]Deletion: {msg} [/yellow]")
+ msg = ""
+ if result:
148
+ msg = result if isinstance(result, str) else result.metadata.name
149
+ click.secho(f"Deletion: {msg}", fg="yellow")
150
151
console.print("[bold yellow]Teardown process initiated for all components.[/bold yellow]")
152
console.print("[bold yellow]Note: Some processes may continue in the background.[/bold yellow]")
0 commit comments