Automated update of Base Application package.
This commit is contained in:
parent
092de8827d
commit
c75fba6de0
BIN
dist/app-1.0.0-py3-none-any.whl
vendored
BIN
dist/app-1.0.0-py3-none-any.whl
vendored
Binary file not shown.
BIN
dist/app-1.0.0.tar.gz
vendored
BIN
dist/app-1.0.0.tar.gz
vendored
Binary file not shown.
@ -7,6 +7,3 @@ logging.basicConfig(
|
||||
)
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
from .app import Application as BaseApplication
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
import base64
|
||||
import json
|
||||
import time
|
||||
import uuid
|
||||
import base64
|
||||
|
||||
import dataset
|
||||
from aiohttp import web
|
||||
|
||||
@ -35,7 +36,7 @@ class BaseApplication(web.Application):
|
||||
middlewares.append(self.request_middleware)
|
||||
middlewares.append(self.base64_auth_middleware)
|
||||
middlewares.append(self.session_middleware)
|
||||
super().__init__(middlewares=middlewares,*args, **kwargs)
|
||||
super().__init__(middlewares=middlewares, *args, **kwargs)
|
||||
|
||||
def run(self, *args, **kwargs):
|
||||
web.run_app(self, *args, **kwargs)
|
||||
|
Loading…
Reference in New Issue
Block a user