aagoluoglu commited on
Commit
0791f7e
·
verified ·
1 Parent(s): e31c294

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -75,11 +75,16 @@ def server(input: Inputs, output: Outputs, session: Session):
75
 
76
  @render.image
77
  def uploaded_image():
 
78
  from pathlib import Path
79
 
80
- dir = Path(__file__).resolve().parent
81
- img: ImgData = {"src": str(dir / uploaded_image_path()), "width": "100px"}
82
- return img
 
 
 
 
83
 
84
  # @output
85
  # @render.image
 
75
 
76
  @render.image
77
  def uploaded_image():
78
+ """Displays the uploaded image"""
79
  from pathlib import Path
80
 
81
+ img_src = uploaded_image_path()
82
+ if img_src:
83
+ dir = Path(__file__).resolve().parent
84
+ img: ImgData = {"src": str(dir / uploaded_image_path()), "width": "100px"}
85
+ return img
86
+ else:
87
+ return "" # Return an empty string if no image is uploaded
88
 
89
  # @output
90
  # @render.image