summaryrefslogtreecommitdiff
path: root/openstackclient/compute/v2/fixedip.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-12-16 14:56:41 +0000
committerGerrit Code Review <review@openstack.org>2015-12-16 14:56:41 +0000
commit251939fb366ccaf0822562705e856c5a6a508ac6 (patch)
treef58c930d99a7ce720ecfe6ce917b4a13f9a16e68 /openstackclient/compute/v2/fixedip.py
parentd72f6228cf0823f4a13df9da84455e1d6c242c76 (diff)
parent494659fbe432795c846a4e4e59e7faf4a25b6dca (diff)
downloadpython-openstackclient-251939fb366ccaf0822562705e856c5a6a508ac6.tar.gz
Merge "Trivial: Remove useless return from files in compute."
Diffstat (limited to 'openstackclient/compute/v2/fixedip.py')
-rw-r--r--openstackclient/compute/v2/fixedip.py2
1 files changed, 0 insertions, 2 deletions
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