Refs #23919 -- Replaced super(ASGIHandler, self) with super().

This commit is contained in:
Jon Dufresne 2019-08-25 23:36:56 -07:00 committed by Mariusz Felisiak
parent 6b402b28b3
commit d0861fcb2d
1 changed files with 1 additions and 1 deletions

View File

@ -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):