Update app.py
Browse files
app.py
CHANGED
|
@@ -93,6 +93,6 @@ iface = gr.Interface(
|
|
| 93 |
description="Select source and target languages for translation.",
|
| 94 |
)
|
| 95 |
|
| 96 |
-
iface.launch(debug=True)
|
| 97 |
-
|
| 98 |
|
|
|
|
|
|
|
|
|
| 93 |
description="Select source and target languages for translation.",
|
| 94 |
)
|
| 95 |
|
|
|
|
|
|
|
| 96 |
|
| 97 |
+
if __name__ == "__main__":
|
| 98 |
+
iface.launch()
|