valhalla commited on
Commit
93ae670
1 Parent(s): ea31cb0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -20,8 +20,8 @@ expected_md5 = url.split("/")[-2]
20
  download_target = os.path.join(root, filename)
21
  result_path = os.path.join(root, pathname)
22
 
23
- #if os.path.exists(result_path):
24
- result_path = download(url, root)
25
 
26
 
27
 
 
20
  download_target = os.path.join(root, filename)
21
  result_path = os.path.join(root, pathname)
22
 
23
+ if not os.path.exists(result_path):
24
+ result_path = download(url, root)
25
 
26
 
27