summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2019-08-25 23:36:56 -0700
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-08-26 08:36:56 +0200
commitd0861fcb2dbb2e733a189115b546651a5042a327 (patch)
tree4bd5bfd6ebbde2b7d372cb47e6d93a4852109074
parent6b402b28b3d589f2de6c505b2be5361df3e6ad10 (diff)
Refs #23919 -- Replaced super(ASGIHandler, self) with super().
-rw-r--r--django/core/handlers/asgi.py2
1 files changed, 1 insertions, 1 deletions
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):