From 46dec75082422a31d7ef90a2c9ca35ff768b7995 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Sat, 12 Mar 2022 10:39:27 +0000 Subject: [PATCH] Gateway: Remove un-used bottle imports --- src/eddn/Gateway.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eddn/Gateway.py b/src/eddn/Gateway.py index 0e69de2..a619bb3 100644 --- a/src/eddn/Gateway.py +++ b/src/eddn/Gateway.py @@ -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()