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 fb0c109 commit 26d177eCopy full SHA for 26d177e
src/warnet/control.py
@@ -146,8 +146,10 @@ def uninstall_release(namespace, release_name):
146
# Wait for all tasks to complete and print results
147
for future in as_completed(futures):
148
result = future.result()
149
- msg = result if isinstance(result, str) else result.metadata.name
150
- console.print(f"[yellow]Deletion: {msg} [/yellow]")
+ msg = ""
+ if result:
151
+ msg = result if isinstance(result, str) else result.metadata.name
152
+ click.secho(f"Deletion: {msg}", fg="yellow")
153
154
console.print("[bold yellow]Teardown process initiated for all components.[/bold yellow]")
155
console.print("[bold yellow]Note: Some processes may continue in the background.[/bold yellow]")
0 commit comments