Fix wget download updated parameters (#538)

This commit is contained in:
Michael Yuan 2023-06-26 04:45:57 -04:00 committed by GitHub
parent de3bd58434
commit 6798e1ca3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ def download_wikipedia_data(
else:
print("File not found, downloading now...")
# Download the data
wget.download(data_url, out=download_path, bar=True)
wget.download(data_url, out=download_path)
# Unzip the data
with zipfile.ZipFile(zip_file_path, 'r') as zip_ref: