gamaba commited on
Commit
70f2e4c
·
verified ·
1 Parent(s): 16e7e4a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -75,7 +75,7 @@ def get_image_path(category, selection):
75
  # Convert dropdown value → UPPERCASE filename
76
  filename = selection.upper().replace(" ", "_") + ".jpg"
77
 
78
- path = os.path.join("images", category, filename)
79
 
80
  return path if os.path.exists(path) else None
81
 
 
75
  # Convert dropdown value → UPPERCASE filename
76
  filename = selection.upper().replace(" ", "_") + ".jpg"
77
 
78
+ path = os.path.join("Images", category, filename)
79
 
80
  return path if os.path.exists(path) else None
81