From 4a1ece64f8bc88542f0a6288bdba10b4d7052735 Mon Sep 17 00:00:00 2001 From: Sabbir Sobhani Date: Sat, 31 Dec 2022 13:06:09 +0600 Subject: [PATCH] ambiguous Ambiguous between `wsgi` app and socket `server` instance `app` --- docs/server.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/server.rst b/docs/server.rst index 8172572..e6e4028 100644 --- a/docs/server.rst +++ b/docs/server.rst @@ -53,8 +53,8 @@ These two wrappers can also act as middlewares, forwarding any traffic that is not intended to the Socket.IO server to another application. This allows Socket.IO servers to integrate easily into existing WSGI or ASGI applications:: - from wsgi import app # a Flask, Django, etc. application - app = socketio.WSGIApp(sio, app) + from wsgi import wsgi_app # a Flask, Django, etc. application + app = socketio.WSGIApp(sio, wsgi_app) Serving Static Files --------------------