Skip to content

Commit

Permalink
fixed error
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielaSchacherer committed Sep 19, 2024
1 parent fc4c2d5 commit eda4f82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions idc_index/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -1590,10 +1590,10 @@ def download_from_selection(
"Total size of files to download: " + self._format_size(total_size)
)
else:
total_size_bytes = round(result_df["instance_size"].sum(), 2)
total_size = round(result_df["instance_size"].sum(), 2)
logger.info(
"Total size of files to download: "
+ self._format_size(total_size_bytes, size_in_bytes=True)
+ self._format_size(total_size, size_in_bytes=True)
)

# disk_free_space_MB = psutil.disk_usage(downloadDir).free / (1000 * 1000)
Expand Down

0 comments on commit eda4f82

Please sign in to comment.