Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -233,5 +233,5 @@ with gr.Blocks() as iface: # Removed theme argument
233
  # -------------------------------------------------------------
234
  # LAUNCH APP
235
  # -------------------------------------------------------------
236
- if _name_ == "_main_":
237
-   iface.launch()
 
233
  # -------------------------------------------------------------
234
  # LAUNCH APP
235
  # -------------------------------------------------------------
236
+ if __name__ == "__main__":
237
+ iface.launch()