diff options
| author | Mohan Muppidi <mkumar2301@gmail.com> | 2016-02-28 09:43:44 +0000 |
|---|---|---|
| committer | Mohan Muppidi <mkumar2301@gmail.com> | 2016-02-29 17:23:29 +0000 |
| commit | 3d7430463c733e1dfcf8487ce955abd863f9f617 (patch) | |
| tree | 59af01ecbe0ab537a34488ca96fa8fe264a5b4a4 /openstackclient/identity/v3/consumer.py | |
| parent | 2819450be5d4fa57c6efdb4cd225f59bab894fba (diff) | |
| download | python-openstackclient-3d7430463c733e1dfcf8487ce955abd863f9f617.tar.gz | |
take_action() method from command.Command shouldn't return
command.Command and command.Showone are base classes implemented
in cliff framework. Showone extends Command to allow take_action()
to return data to be formatted using a user-selectable formatter.
Most of the classes which are extended from Command in
openstackclient/identity/v3/ in some cases return data or return
nothing where it is not necessary, this commit fixes most of them.
Change-Id: I84c72ea4d6680f8bdbef5449316dd9a8af8c8286
Closes-Bug: 1550892
Diffstat (limited to 'openstackclient/identity/v3/consumer.py')
| -rw-r--r-- | openstackclient/identity/v3/consumer.py | 2 |
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): |
