From 494659fbe432795c846a4e4e59e7faf4a25b6dca Mon Sep 17 00:00:00 2001 From: Tang Chen Date: Thu, 17 Dec 2015 09:34:12 +0800 Subject: Trivial: Remove useless return from files in compute. Change-Id: I9dc6749256fcd53d292d7f658912c032e9ce9df5 --- openstackclient/compute/v2/security_group.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'openstackclient/compute/v2/security_group.py') diff --git a/openstackclient/compute/v2/security_group.py b/openstackclient/compute/v2/security_group.py index 6d38195c..374b2fbd 100644 --- a/openstackclient/compute/v2/security_group.py +++ b/openstackclient/compute/v2/security_group.py @@ -174,7 +174,6 @@ class DeleteSecurityGroup(command.Command): parsed_args.group, ) compute_client.security_groups.delete(data.id) - return class DeleteSecurityGroupRule(command.Command): @@ -196,7 +195,6 @@ class DeleteSecurityGroupRule(command.Command): compute_client = self.app.client_manager.compute compute_client.security_group_rules.delete(parsed_args.rule) - return class ListSecurityGroup(lister.Lister): -- cgit v1.2.1