Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
SimOnPanw committed Jul 3, 2024
1 parent 6875579 commit 33632d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prismacloud/api/cwpp/_credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ def credential_list_create(self, body):

def credential_list_delete(self, cred):
return self.execute_compute(
'DELETE', '/api/v1/credentials/%s' % urllib.parse.quote(cred)
'DELETE', 'api/v1/credentials/%s' % urllib.parse.quote(cred)
)

def credential_list_usages_read(self, cred):
return self.execute_compute(
'GET', '/api/v1/credentials/%s/usages' % urllib.parse.quote(cred)
'GET', 'api/v1/credentials/%s/usages' % urllib.parse.quote(cred)
)

0 comments on commit 33632d5

Please sign in to comment.