From f552302b614e612892714173b45b651caa10371a Mon Sep 17 00:00:00 2001 From: Tang Chen Date: Fri, 18 Dec 2015 23:25:05 +0800 Subject: Trivial: Remove useless return from files in image and volume Change-Id: I3526ecd202d0908d91305a066ad72d03cee794b5 --- openstackclient/volume/v2/volume.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'openstackclient/volume/v2/volume.py') diff --git a/openstackclient/volume/v2/volume.py b/openstackclient/volume/v2/volume.py index bbcceca6..c636cf2f 100644 --- a/openstackclient/volume/v2/volume.py +++ b/openstackclient/volume/v2/volume.py @@ -189,7 +189,6 @@ class DeleteVolume(command.Command): volume_client.volumes.force_delete(volume_obj.id) else: volume_client.volumes.delete(volume_obj.id) - return class ListVolume(lister.Lister): @@ -394,8 +393,6 @@ class SetVolume(command.Command): if not kwargs and not parsed_args.property and not parsed_args.size: self.app.log.error("No changes requested\n") - return - class ShowVolume(show.ShowOne): """Display volume details""" @@ -452,4 +449,3 @@ class UnsetVolume(command.Command): volume_client.volumes.delete_metadata( volume.id, parsed_args.property) - return -- cgit v1.2.1