aagoluoglu commited on
Commit
630b1e2
·
1 Parent(s): b0b192f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -127,7 +127,7 @@ def server(input: Inputs, output: Outputs, session: Session):
127
  img_src = uploaded_image_path()
128
  if img_src:
129
  dir = Path(__file__).resolve().parent
130
- img: ImgData = {"src": str(dir / img_src), "width": "50px"}
131
  print("IMAGE", img)
132
  return img
133
  else:
 
127
  img_src = uploaded_image_path()
128
  if img_src:
129
  dir = Path(__file__).resolve().parent
130
+ img: ImgData = {"src": str(img_src), "width": "100px"}
131
  print("IMAGE", img)
132
  return img
133
  else: