Update app.py
Browse files
app.py
CHANGED
@@ -38,6 +38,7 @@ def load_plan_vi(mapa_seleccionado, uploaded_file):
|
|
38 |
plan_image = Image.open(uploaded_file.name)
|
39 |
elif mapa_seleccionado == "Upload your own image" and uploaded_file is None:
|
40 |
# raise gradio.Warning("Deafult plan. Image was not loaded 😒.", duration=5)
|
|
|
41 |
image_plan_path1 = os.path.join(images_file, "100.JPG")
|
42 |
plan_image = Image.open(image_plan_path1)
|
43 |
else:
|
|
|
38 |
plan_image = Image.open(uploaded_file.name)
|
39 |
elif mapa_seleccionado == "Upload your own image" and uploaded_file is None:
|
40 |
# raise gradio.Warning("Deafult plan. Image was not loaded 😒.", duration=5)
|
41 |
+
|
42 |
image_plan_path1 = os.path.join(images_file, "100.JPG")
|
43 |
plan_image = Image.open(image_plan_path1)
|
44 |
else:
|