Skip to content

Commit

Permalink
Revert "Fix env variable names in delete_oldest_n_studies.py"
Browse files Browse the repository at this point in the history
This reverts commit 0842f43.
  • Loading branch information
milanmlft committed Dec 7, 2023
1 parent 1cdf7f0 commit 55972d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/delete_oldest_n_studies.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ def __init__(self, uid: str):
class Orthanc:
def __init__(
self,
url=f"http://localhost:{os.environ['ORTHANC_RAW_WEB_PORT']}",
username=os.environ["ORTHANC_RAW_USERNAME"],
password=os.environ["ORTHANC_RAW_PASSWORD"],
url=f"http://localhost:{os.environ['ORTHANC_PORT']}",
username=os.environ["ORTHANC_USERNAME"],
password=os.environ["ORTHANC_PASSWORD"],
):
self._url = url.rstrip("/")
self._username = username
Expand Down

0 comments on commit 55972d5

Please sign in to comment.