We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d00dc12 commit 03d408dCopy full SHA for 03d408d
cli/odc-cli
@@ -389,9 +389,9 @@ class SubjectCommands:
389
@staticmethod
390
def delete(id: str) -> None:
391
entry = input("Are you sure you want to delete this subject? Type DELETE to Confirm: ")
392
- if(entry == "DELETE"):
+ if entry == "DELETE":
393
url =build_url_with_params(
394
- f'{config.base_url}' + quote(f'/v1/subjects/{id}', safe='/'),
+ f'{config.base_url}/v1/subjects/{quote(id, safe="")}',
395
{
396
'force': True
397
}
0 commit comments