meeww commited on
Commit
c023b45
·
1 Parent(s): 68998a5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -46,12 +46,12 @@ init()
46
 
47
 
48
 
49
- def generate(name):
50
  init()
51
  crop()
52
  img = Image.open("results64/0.png")
53
  print(img)
54
  return "hi"
55
 
56
- iface = gr.Interface(fn=generate, inputs=None, outputs="text")
57
  iface.launch(debug = True)
 
46
 
47
 
48
 
49
+ def gen():
50
  init()
51
  crop()
52
  img = Image.open("results64/0.png")
53
  print(img)
54
  return "hi"
55
 
56
+ iface = gr.Interface(fn=gen, inputs=None, outputs="text")
57
  iface.launch(debug = True)