valhalla commited on
Commit
fd25d71
·
1 Parent(s): 4752874

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ expected_md5 = url.split("/")[-2]
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
 
 
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