Skip to content

Commit

Permalink
Remove return field lookup from delete_datalake
Browse files Browse the repository at this point in the history
Signed-off-by: Webster Mudge <wmudge@cloudera.com>
  • Loading branch information
wmudge committed Mar 22, 2023
1 parent b27b818 commit 57be449
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cdpy/datalake.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def describe_datalake(self, name):

def delete_datalake(self, name, force=False):
return self.sdk.call(
svc='datalake', func='delete_datalake', ret_field='datalake', squelch=[Squelch('NOT_FOUND')],
svc='datalake', func='delete_datalake', squelch=[Squelch('NOT_FOUND')],
datalakeName=name, force=force
)

Expand Down

0 comments on commit 57be449

Please sign in to comment.