From 662c7c7f62b3576c61a8fdd621f2ff7d1ae441f3 Mon Sep 17 00:00:00 2001 From: Adam Hopkins Date: Thu, 5 Nov 2020 08:57:40 +0200 Subject: [PATCH] Fix linting and bump to 19.12.4 --- sanic/__version__.py | 2 +- sanic/app.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/sanic/__version__.py b/sanic/__version__.py index d9f9ee85..25c3169c 100644 --- a/sanic/__version__.py +++ b/sanic/__version__.py @@ -1 +1 @@ -__version__ = "19.12.3" +__version__ = "19.12.4" diff --git a/sanic/app.py b/sanic/app.py index e0fdbfe8..1fed6cd4 100644 --- a/sanic/app.py +++ b/sanic/app.py @@ -1474,4 +1474,5 @@ class Sanic: self.asgi = True asgi_app = await ASGIApp.create(self, scope, receive, send) await asgi_app() + _asgi_single_callable = True # We conform to ASGI 3.0 single-callable