meeww commited on
Commit
db4cf25
·
1 Parent(s): 4c5c1bf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -64,11 +64,8 @@ iface = gr.Interface(
64
  fn=gen,
65
  inputs=gr.Slider(0,1000,500,step = 0.01),
66
  outputs=gr.Gallery(label="Generated Skins"),
67
- enable_queue = True,
68
  title = "Minecraft Skin Generator",
69
- width = 64,
70
- height = 64,
71
  css = "html{image-rendering:pixelated}",
72
  debug = True,
73
  )
74
- iface.launch()
 
64
  fn=gen,
65
  inputs=gr.Slider(0,1000,500,step = 0.01),
66
  outputs=gr.Gallery(label="Generated Skins"),
 
67
  title = "Minecraft Skin Generator",
 
 
68
  css = "html{image-rendering:pixelated}",
69
  debug = True,
70
  )
71
+ iface.launch(width=64,height=64,enable_queue=True)