AlvinSiang commited on
Commit
74f29ef
·
verified ·
1 Parent(s): 54aa68a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -35,7 +35,9 @@ function createGradioAnimation() {
35
  }
36
  """
37
 
38
- background = Image.open('eye.jpg').resize(200, 500)
 
 
39
  with gr.Blocks(js=js,theme=gr.themes.Soft()) as demo:
40
  gr.Image(background, height = '200px', interactive = False, show_download_button = False, show_share_button = False)
41
  gr.Markdown(
 
35
  }
36
  """
37
 
38
+ image = Image.open('eye.jpg')
39
+
40
+ background = image.resize((500, 200))
41
  with gr.Blocks(js=js,theme=gr.themes.Soft()) as demo:
42
  gr.Image(background, height = '200px', interactive = False, show_download_button = False, show_share_button = False)
43
  gr.Markdown(