diff --git a/anvil-python/anvil/utils.py b/anvil-python/anvil/utils.py index 129ea5f..6bba5ae 100644 --- a/anvil-python/anvil/utils.py +++ b/anvil-python/anvil/utils.py @@ -84,7 +84,10 @@ def format_commands( "Prepare, create and manage a cluster", [ ("prepare-node-script", None), - ("cluster", lambda cmd: cmd.name != "list"), + ( + "cluster", + lambda cmd: cmd.name not in ["list", "refresh"], + ), ], ), ( @@ -95,7 +98,7 @@ def format_commands( ], ), ( - "Manage and debug the cluster", + "Debug the cluster", [ ("cluster", lambda cmd: cmd.name == "list"), ("inspect", None),