Skip to content

Commit b74f624

Browse files
committed
fix: remove commented code
1 parent d7a02c9 commit b74f624

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

cli/odc-cli

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -388,11 +388,8 @@ class SubjectCommands:
388388
@require_token
389389
@staticmethod
390390
def delete(id: str) -> None:
391-
instrumentUrl = f'{config.base_url}/v1/instrument-records/bySubject/{id}'
392-
print(instrumentUrl)
393391
url = f'{config.base_url}/v1/subjects/{id}'
394-
response = HttpClient.delete(instrumentUrl)
395-
# response = HttpClient.delete(url)
392+
response = HttpClient.delete(url)
396393
print(response)
397394

398395
@require_url

0 commit comments

Comments
 (0)