summaryrefslogtreecommitdiff
path: root/openstackclient/identity/v3/endpoint.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/identity/v3/endpoint.py')
-rw-r--r--openstackclient/identity/v3/endpoint.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/openstackclient/identity/v3/endpoint.py b/openstackclient/identity/v3/endpoint.py
index 1eff3b3b..6e4b356d 100644
--- a/openstackclient/identity/v3/endpoint.py
+++ b/openstackclient/identity/v3/endpoint.py
@@ -109,7 +109,6 @@ class DeleteEndpoint(command.Command):
endpoint_id = utils.find_resource(identity_client.endpoints,
parsed_args.endpoint).id
identity_client.endpoints.delete(endpoint_id)
- return
class ListEndpoint(command.Lister):
@@ -221,7 +220,6 @@ class SetEndpoint(command.Command):
if parsed_args.service:
service = common.find_service(identity_client, parsed_args.service)
service_id = service.id
-
enabled = None
if parsed_args.enabled:
enabled = True
@@ -237,8 +235,6 @@ class SetEndpoint(command.Command):
enabled=enabled
)
- return
-
class ShowEndpoint(command.ShowOne):
"""Display endpoint details"""