Skip to content

Commit 7f6499c

Browse files
authored
Clean up debug prints in download_package function
Removed debug print statements for response status and content.
1 parent 986dfbd commit 7f6499c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

FHIRValidationAction/scripts/configure-packages.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ def check_package_locally(package_id, version):
3939
def download_package(package_id, version, failed):
4040
url = f"https://packages.simplifier.net/{package_id}/{version}"
4141
response = requests.get(url)
42-
print(response.status_code)
43-
print(response)
4442

4543
if response.status_code == 404:
4644
print(f"Package {package_id}#{version} not found on registry")
@@ -50,6 +48,7 @@ def download_package(package_id, version, failed):
5048
with open(f"{test_script_repo_path}/packages/{package_id}-{version}.tgz", "wb") as f:
5149
f.write(response.content)
5250
return True
51+
5352

5453
def install_package(package_id, version, server_url, failed):
5554
package_path = f"{test_script_repo_path}/packages/{package_id}-{version}.tgz"

0 commit comments

Comments
 (0)