Skip to content

Commit

Permalink
remove print temp file url
Browse files Browse the repository at this point in the history
  • Loading branch information
chuongmep committed May 11, 2024
1 parent 722c234 commit c94cde2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion APSToolkitPython/src/aps_toolkit/BIM360.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c94cde2

Please sign in to comment.