From f21f13888f821690a1b8f7523050e3ff166ea98b Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Wed, 25 Sep 2024 21:05:13 +0200 Subject: [PATCH] fix(ruff): avoid using boolean arguments on a call without naming them --- src/aleph_client/commands/instance/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aleph_client/commands/instance/__init__.py b/src/aleph_client/commands/instance/__init__.py index bdb2668f..33a82180 100644 --- a/src/aleph_client/commands/instance/__init__.py +++ b/src/aleph_client/commands/instance/__init__.py @@ -516,7 +516,7 @@ async def delete( crn_url = str(info["crn_url"]) if not auto_scheduled and crn_url: try: - status = await erase(item_hash, crn_url, private_key, private_key_file, True, debug) + status = await erase(item_hash, crn_url, private_key, private_key_file, silent=True, debug=debug) if status == 1: echo(f"No associated VM on {crn_url}. Skipping...") except Exception: