acecalisto3 commited on
Commit
5e48575
·
verified ·
1 Parent(s): 6fdf7ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -339,5 +339,10 @@ def main():
339
  except Exception as e:
340
  print(f"Error launching app: {e}")
341
 
 
 
 
 
 
342
  if __name__ == "__main__":
343
  main()
 
339
  except Exception as e:
340
  print(f"Error launching app: {e}")
341
 
342
+ def launch_app(self):
343
+ demo = self.build_app()
344
+ print(f"Demo object type: {type(demo)}")
345
+ demo.launch()
346
+
347
  if __name__ == "__main__":
348
  main()