Gateway: Remove un-used bottle imports

This commit is contained in:
Athanasius 2022-03-12 10:39:27 +00:00
parent 13765c70d5
commit bf432a9708
No known key found for this signature in database
GPG Key ID: 8C392035DD80FD62

View File

@ -27,7 +27,7 @@ from eddn.core.Validator import ValidationSeverity, Validator
monkey.patch_all()
import bottle
from bottle import Bottle, get, post, request, response, run
from bottle import Bottle, request, response
bottle.BaseRequest.MEMFILE_MAX = 1024 * 1024 # 1MiB, default is/was 100KiB
app = Bottle()