summaryrefslogtreecommitdiff
path: root/openstackclient/volume/v2/volume_host.py
diff options
context:
space:
mode:
authorStephen Finucane <sfinucan@redhat.com>2023-05-08 10:54:22 +0100
committerStephen Finucane <sfinucan@redhat.com>2023-05-10 10:51:30 +0100
commit35ba1d8f1304d3255b96b704d524666ec5b6fea2 (patch)
tree6d4ab560d4086e8b1a1f935b8531d7e85550cc36 /openstackclient/volume/v2/volume_host.py
parent28ffa2bf9f017212da5eb84b0cf74df62e2f5eb9 (diff)
downloadpython-openstackclient-35ba1d8f1304d3255b96b704d524666ec5b6fea2.tar.gz
Blacken openstackclient.volume
Black used with the '-l 79 -S' flags. A future change will ignore this commit in git-blame history by adding a 'git-blame-ignore-revs' file. Change-Id: Ic318617c67ab7ce6527f9016b759a1d4b0b80802 Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
Diffstat (limited to 'openstackclient/volume/v2/volume_host.py')
-rw-r--r--openstackclient/volume/v2/volume_host.py23
1 files changed, 11 insertions, 12 deletions
diff --git a/openstackclient/volume/v2/volume_host.py b/openstackclient/volume/v2/volume_host.py
index 2fdeb968..df93c059 100644
--- a/openstackclient/volume/v2/volume_host.py
+++ b/openstackclient/volume/v2/volume_host.py
@@ -25,23 +25,24 @@ class FailoverVolumeHost(command.Command):
def get_parser(self, prog_name):
parser = super(FailoverVolumeHost, self).get_parser(prog_name)
parser.add_argument(
- "host",
- metavar="<host-name>",
- help=_("Name of volume host")
+ "host", metavar="<host-name>", help=_("Name of volume host")
)
parser.add_argument(
"--volume-backend",
metavar="<backend-id>",
required=True,
- help=_("The ID of the volume backend replication "
- "target where the host will failover to (required)")
+ help=_(
+ "The ID of the volume backend replication "
+ "target where the host will failover to (required)"
+ ),
)
return parser
def take_action(self, parsed_args):
service_client = self.app.client_manager.volume
- service_client.services.failover_host(parsed_args.host,
- parsed_args.volume_backend)
+ service_client.services.failover_host(
+ parsed_args.host, parsed_args.volume_backend
+ )
class SetVolumeHost(command.Command):
@@ -50,20 +51,18 @@ class SetVolumeHost(command.Command):
def get_parser(self, prog_name):
parser = super(SetVolumeHost, self).get_parser(prog_name)
parser.add_argument(
- "host",
- metavar="<host-name>",
- help=_("Name of volume host")
+ "host", metavar="<host-name>", help=_("Name of volume host")
)
enabled_group = parser.add_mutually_exclusive_group()
enabled_group.add_argument(
"--disable",
action="store_true",
- help=_("Freeze and disable the specified volume host")
+ help=_("Freeze and disable the specified volume host"),
)
enabled_group.add_argument(
"--enable",
action="store_true",
- help=_("Thaw and enable the specified volume host")
+ help=_("Thaw and enable the specified volume host"),
)
return parser