summaryrefslogtreecommitdiff
path: root/openstackclient
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient')
-rw-r--r--openstackclient/network/v2/network.py2
-rw-r--r--openstackclient/network/v2/router.py1
2 files changed, 0 insertions, 3 deletions
diff --git a/openstackclient/network/v2/network.py b/openstackclient/network/v2/network.py
index 519356b4..15f4592b 100644
--- a/openstackclient/network/v2/network.py
+++ b/openstackclient/network/v2/network.py
@@ -132,7 +132,6 @@ class DeleteNetwork(command.Command):
for network in parsed_args.network:
obj = client.find_network(network)
client.delete_network(obj)
- return
class ListNetwork(lister.Lister):
@@ -271,7 +270,6 @@ class SetNetwork(command.Command):
raise exceptions.CommandError(msg)
client.update_network(obj)
- return
class ShowNetwork(show.ShowOne):
diff --git a/openstackclient/network/v2/router.py b/openstackclient/network/v2/router.py
index 5ad7ccd2..09e0fe4c 100644
--- a/openstackclient/network/v2/router.py
+++ b/openstackclient/network/v2/router.py
@@ -146,7 +146,6 @@ class DeleteRouter(command.Command):
for router in parsed_args.router:
obj = client.find_router(router)
client.delete_router(obj)
- return
class ListRouter(lister.Lister):