mirror of
https://github.com/django/django.git
synced 2025-09-28 04:54:53 +00:00
Refs #23919 -- Replaced super(ASGIHandler, self) with super().
This commit is contained in:
parent
6b402b28b3
commit
d0861fcb2d
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue