From c94cde2f050f89499bf682394ae5d8e767884861 Mon Sep 17 00:00:00 2001 From: Chuong Ho <31106432+chuongmep@users.noreply.github.com> Date: Sun, 12 May 2024 01:50:34 +0800 Subject: [PATCH] remove print temp file url --- APSToolkitPython/src/aps_toolkit/BIM360.py | 1 - 1 file changed, 1 deletion(-) diff --git a/APSToolkitPython/src/aps_toolkit/BIM360.py b/APSToolkitPython/src/aps_toolkit/BIM360.py index f87ee50..63c641c 100644 --- a/APSToolkitPython/src/aps_toolkit/BIM360.py +++ b/APSToolkitPython/src/aps_toolkit/BIM360.py @@ -549,7 +549,6 @@ def download_file_item(self, file_path: str, project_id: str, folder_id: str, fi if response.status_code != 200: raise Exception(response.content) download_url = response.json()['url'] - print("Start Download File:", download_url) response = requests.get(download_url) with open(file_path, 'wb') as file: file.write(response.content)