Update app.py
Browse files
app.py
CHANGED
|
@@ -99,6 +99,6 @@ iface = gr.Interface(
|
|
| 99 |
["A cute indigo furry wizard casting a spell, magical effects, cartoon style", "disfigured, ugly"],
|
| 100 |
]
|
| 101 |
)
|
| 102 |
-
|
| 103 |
if __name__ == "__main__":
|
| 104 |
-
iface.
|
|
|
|
| 99 |
["A cute indigo furry wizard casting a spell, magical effects, cartoon style", "disfigured, ugly"],
|
| 100 |
]
|
| 101 |
)
|
| 102 |
+
# Launch the Gradio app
|
| 103 |
if __name__ == "__main__":
|
| 104 |
+
iface.launch() # <--- Make sure this line is exactly 'iface.launch()'
|