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/fixedip.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'openstackclient/compute/v2/fixedip.py') diff --git a/openstackclient/compute/v2/fixedip.py b/openstackclient/compute/v2/fixedip.py index da9d85c3..1ab8a18c 100644 --- a/openstackclient/compute/v2/fixedip.py +++ b/openstackclient/compute/v2/fixedip.py @@ -52,7 +52,6 @@ class AddFixedIP(command.Command): compute_client.servers, parsed_args.server) server.add_fixed_ip(network.id) - return class RemoveFixedIP(command.Command): @@ -82,4 +81,3 @@ class RemoveFixedIP(command.Command): compute_client.servers, parsed_args.server) server.remove_fixed_ip(parsed_args.ip_address) - return -- cgit v1.2.1