Jim Dowling commited on
Commit
1fc1c7e
1 Parent(s): 150a9cd
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ def show_image(img):
26
  img_path = f"Models/{name}/{version}/images/{img}.png"
27
 
28
  # Upload the Python script to the "Models", and overwrite if it already exists
29
- downloaded_file_path = dataset_api.download(img_path, overwrite=False)
30
  image = Image.open(f"{img}.png")
31
  return image
32
 
 
26
  img_path = f"Models/{name}/{version}/images/{img}.png"
27
 
28
  # Upload the Python script to the "Models", and overwrite if it already exists
29
+ downloaded_file_path = dataset_api.download(img_path, overwrite=True)
30
  image = Image.open(f"{img}.png")
31
  return image
32