summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-11-19 17:08:13 +0100
committerLars Wirzenius <liw@liw.fi>2017-11-19 17:08:13 +0100
commit1a281a576d1857f481e801e525d38477309c8f18 (patch)
tree8c7c3bd13e9929b9258c80272f99cbcfc2457ddc
parent2d9824a63e03960d36a86d65cda650a40f3aba90 (diff)
downloadapifw-1a281a576d1857f481e801e525d38477309c8f18.tar.gz
Fix: break long
-rw-r--r--apifw/bottleapp.py3
1 files changed, 2 insertions, 1 deletions
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.