Skip to content

Commit b9eec4e

Browse files
committed
Change filename of download
1 parent d3a4ae8 commit b9eec4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/directory_setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def makedir(path):
4343

4444
# Download inputs from internet
4545
print("Downloading input files...")
46-
name = 'dscim_v0.2.1_inputs.zip'
46+
name = 'dscim_v20220929_inputs.zip'
4747
url = 'https://storage.googleapis.com/climateimpactlab-scc-tool/dscim-epa_input_data/' + name
4848
with requests.get(url, stream = True) as r:
4949
r.raise_for_status()
@@ -53,7 +53,7 @@ def makedir(path):
5353
if chunk: # filter out keep-alive new chunks
5454
f.write(chunk)
5555
pbar.update(len(chunk))
56-
56+
print("")
5757
print("Unzipping input files...")
5858
with zipfile.ZipFile(Path(base) / name, 'r') as zip_ref:
5959
for member in tqdm(zip_ref.infolist()):

0 commit comments

Comments
 (0)