Skip to content

Commit 33632d5

Browse files
committed
fixed typo
1 parent 6875579 commit 33632d5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

prismacloud/api/cwpp/_credentials.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ def credential_list_create(self, body):
1919

2020
def credential_list_delete(self, cred):
2121
return self.execute_compute(
22-
'DELETE', '/api/v1/credentials/%s' % urllib.parse.quote(cred)
22+
'DELETE', 'api/v1/credentials/%s' % urllib.parse.quote(cred)
2323
)
2424

2525
def credential_list_usages_read(self, cred):
2626
return self.execute_compute(
27-
'GET', '/api/v1/credentials/%s/usages' % urllib.parse.quote(cred)
27+
'GET', 'api/v1/credentials/%s/usages' % urllib.parse.quote(cred)
2828
)

0 commit comments

Comments
 (0)