Nunzio commited on
Commit
e96b8d2
·
1 Parent(s): 4912b0e
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -29,6 +29,9 @@ for i in range(len(image_list)):
29
  image_list[i][1] = uid
30
 
31
  def handle_image_click(uid):
 
 
 
32
  return Image.open(uuid_to_path.get(uid)).convert("RGB")
33
 
34
 
 
29
  image_list[i][1] = uid
30
 
31
  def handle_image_click(uid):
32
+ print(uid)
33
+ print(type(uid))
34
+ print(uuid_to_path.get(uid))
35
  return Image.open(uuid_to_path.get(uid)).convert("RGB")
36
 
37