Merge pull request #86 from microsoft/abhiram-requests-fix

Minor fix suggested in Recommenders repo
This commit is contained in:
Said Bleik 2019-06-06 16:03:59 -04:00 коммит произвёл GitHub
Родитель 3e47deee70 802188e115
Коммит b040c481eb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -35,7 +35,7 @@ def maybe_download(
r = requests.get(url, stream=True)
total_size = int(r.headers.get("content-length", 0))
block_size = 1024
num_iterables = math.ceil(total_size // block_size)
num_iterables = math.ceil(total_size / block_size)
with open(filepath, "wb") as file:
for data in tqdm(