From d0861fcb2dbb2e733a189115b546651a5042a327 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sun, 25 Aug 2019 23:36:56 -0700 Subject: [PATCH] Refs #23919 -- Replaced super(ASGIHandler, self) with super(). --- django/core/handlers/asgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/handlers/asgi.py b/django/core/handlers/asgi.py index 00f00ec1e5..bb782dad9b 100644 --- a/django/core/handlers/asgi.py +++ b/django/core/handlers/asgi.py @@ -131,7 +131,7 @@ class ASGIHandler(base.BaseHandler): chunk_size = 2 ** 16 def __init__(self): - super(ASGIHandler, self).__init__() + super().__init__() self.load_middleware() async def __call__(self, scope, receive, send):