remove redundant parenthesis

Change-Id: I062e5d987dd5280df6a96386ff59ccd64227c0cd
This commit is contained in:
Eyal 2018-08-12 14:03:52 +03:00
parent 72d018cc7d
commit 37569b1d91

View File

@ -87,7 +87,7 @@ class WebhookApis(object):
if ctx.get(TenantProps.TENANT, "") == \
webhooks[0][Vprops.PROJECT_ID] or ctx.get(
TenantProps.IS_ADMIN, False):
return (webhooks[0])
return webhooks[0]
else:
LOG.warning('Webhook show - Authorization failed (%s)',
id)