summaryrefslogtreecommitdiff
path: root/apifw/bottleapp.py
diff options
context:
space:
mode:
Diffstat (limited to 'apifw/bottleapp.py')
-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.