We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7c08fb commit 68ca1a5Copy full SHA for 68ca1a5
examples/user_interfaces/embedding_webagg.py
@@ -33,7 +33,7 @@ def create_figure():
33
"""
34
Creates a simple example figure.
35
36
- fig = Figure(figsize=(5, 4))
+ fig = Figure()
37
a = fig.add_subplot(111)
38
t = np.arange(0.0, 3.0, 0.01)
39
s = np.sin(2 * np.pi * t)
@@ -236,4 +236,8 @@ def __init__(self, figure):
236
237
http_server = tornado.httpserver.HTTPServer(application)
238
http_server.listen(8080)
239
+
240
+ print("http://localhost:8080/")
241
+ print("Press Ctrl+C to quit")
242
243
tornado.ioloop.IOLoop.instance().start()
0 commit comments