summaryrefslogtreecommitdiff
path: root/openstackclient/identity/v3/consumer.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/identity/v3/consumer.py')
-rw-r--r--openstackclient/identity/v3/consumer.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/openstackclient/identity/v3/consumer.py b/openstackclient/identity/v3/consumer.py
index 72983988..0da4103d 100644
--- a/openstackclient/identity/v3/consumer.py
+++ b/openstackclient/identity/v3/consumer.py
@@ -60,7 +60,6 @@ class DeleteConsumer(command.Command):
consumer = utils.find_resource(
identity_client.oauth1.consumers, parsed_args.consumer)
identity_client.oauth1.consumers.delete(consumer.id)
- return
class ListConsumer(command.Lister):
@@ -107,7 +106,6 @@ class SetConsumer(command.Command):
consumer = identity_client.oauth1.consumers.update(
consumer.id, **kwargs)
- return
class ShowConsumer(command.ShowOne):