NicolasG2523 commited on
Commit
470ed74
·
verified ·
1 Parent(s): d010a15

Update gradio_app.py

Browse files

Debug: imprimir dir(zero) y comentar zero.init()

Files changed (1) hide show
  1. gradio_app.py +3 -1
gradio_app.py CHANGED
@@ -767,5 +767,7 @@ if __name__ == '__main__':
767
  demo = build_app()
768
  app = gr.mount_gradio_app(app, demo, path="/")
769
  from spaces import zero
770
- zero.init()
 
 
771
  uvicorn.run(app, host=args.host, port=args.port)
 
767
  demo = build_app()
768
  app = gr.mount_gradio_app(app, demo, path="/")
769
  from spaces import zero
770
+ import sys
771
+ print(">>> ATTRS spaces.zero:", dir(zero), file=sys.stderr)
772
+
773
  uvicorn.run(app, host=args.host, port=args.port)