summaryrefslogtreecommitdiff
path: root/openstackclient/object/v1/account.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/object/v1/account.py')
-rw-r--r--openstackclient/object/v1/account.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/openstackclient/object/v1/account.py b/openstackclient/object/v1/account.py
index d6bc9fd7..ef3a47f7 100644
--- a/openstackclient/object/v1/account.py
+++ b/openstackclient/object/v1/account.py
@@ -30,8 +30,10 @@ class SetAccount(command.Command):
metavar="<key=value>",
required=True,
action=parseractions.KeyValueAction,
- help=_("Set a property on this account "
- "(repeat option to set multiple properties)")
+ help=_(
+ "Set a property on this account "
+ "(repeat option to set multiple properties)"
+ ),
)
return parser
@@ -48,7 +50,8 @@ class ShowAccount(command.ShowOne):
data = self.app.client_manager.object_store.account_show()
if 'properties' in data:
data['properties'] = format_columns.DictColumn(
- data.pop('properties'))
+ data.pop('properties')
+ )
return zip(*sorted(data.items()))
@@ -63,8 +66,10 @@ class UnsetAccount(command.Command):
required=True,
action='append',
default=[],
- help=_('Property to remove from account '
- '(repeat option to remove multiple properties)'),
+ help=_(
+ 'Property to remove from account '
+ '(repeat option to remove multiple properties)'
+ ),
)
return parser