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/snapshot.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'openstackclient/volume/v2/snapshot.py') diff --git a/openstackclient/volume/v2/snapshot.py b/openstackclient/volume/v2/snapshot.py index aa7630ae..f939a553 100644 --- a/openstackclient/volume/v2/snapshot.py +++ b/openstackclient/volume/v2/snapshot.py @@ -97,7 +97,6 @@ class DeleteSnapshot(command.Command): snapshot_id = utils.find_resource( volume_client.volume_snapshots, snapshot).id volume_client.volume_snapshots.delete(snapshot_id) - return class ListSnapshot(lister.Lister): @@ -217,7 +216,6 @@ class SetSnapshot(command.Command): volume_client.volume_snapshots.set_metadata(snapshot.id, parsed_args.property) volume_client.volume_snapshots.update(snapshot.id, **kwargs) - return class ShowSnapshot(show.ShowOne): @@ -280,4 +278,3 @@ class UnsetSnapshot(command.Command): ) else: self.app.log.error("No changes requested\n") - return -- cgit v1.2.1