Fix imports and other mistakes

This commit is contained in:
Tulir Asokan
2018-07-13 22:14:04 +03:00
parent bc160e0593
commit 48665acf1d
2 changed files with 6 additions and 5 deletions
@@ -17,6 +17,7 @@
from aiohttp import web
import logging
from ...user import User
from ..common import AuthAPI
@@ -24,7 +25,7 @@ class ProvisioningAPI(AuthAPI):
log = logging.getLogger("mau.web.provisioning")
def __init__(self, loop):
super(AuthAPI, self).__init__(loop)
super().__init__(loop)
self.app = web.Application(loop=loop)