From 1a281a576d1857f481e801e525d38477309c8f18 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 19 Nov 2017 17:08:13 +0100 Subject: Fix: break long --- apifw/bottleapp.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apifw/bottleapp.py b/apifw/bottleapp.py index 99cced0..ab92f3c 100644 --- a/apifw/bottleapp.py +++ b/apifw/bottleapp.py @@ -278,7 +278,8 @@ class BottleApplication: raise bottle.HTTPError(status=apifw.HTTP_BAD_REQUEST, body=str(e)) -def create_bottle_application(api, counter, logger, config, resource_types=None): +def create_bottle_application( + api, counter, logger, config, resource_types=None): # Create a new bottle.Bottle application, set it up, and return it # so that gunicorn can execute it from the main program. -- cgit v1.2.1