From 0c29cf2df41600d3906d521c72991c7686018b71 Mon Sep 17 00:00:00 2001
From: Michael Merickel <michael@merickel.org>
Date: Mon, 15 Oct 2018 16:24:07 +0200
Subject: [PATCH] format source using black

---
 src/pyramid/paster.py |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/src/pyramid/paster.py b/src/pyramid/paster.py
index f7544f0..eda4794 100644
--- a/src/pyramid/paster.py
+++ b/src/pyramid/paster.py
@@ -1,6 +1,7 @@
 from pyramid.scripting import prepare
 from pyramid.scripts.common import get_config_loader
 
+
 def setup_logging(config_uri, global_conf=None):
     """
     Set up Python logging with the filename specified via ``config_uri``
@@ -10,6 +11,7 @@
     """
     loader = get_config_loader(config_uri)
     loader.setup_logging(global_conf)
+
 
 def get_app(config_uri, name=None, options=None):
     """ Return the WSGI application named ``name`` in the PasteDeploy
@@ -27,6 +29,7 @@
     loader = get_config_loader(config_uri)
     return loader.get_wsgi_app(name, options)
 
+
 def get_appsettings(config_uri, name=None, options=None):
     """ Return a dictionary representing the key/value pairs in an ``app``
     section within the file represented by ``config_uri``.
@@ -42,6 +45,7 @@
     """
     loader = get_config_loader(config_uri)
     return loader.get_wsgi_app_settings(name, options)
+
 
 def bootstrap(config_uri, request=None, options=None):
     """ Load a WSGI application from the PasteDeploy config file specified
@@ -108,4 +112,3 @@
     env = prepare(request)
     env['app'] = app
     return env
-

--
Gitblit v1.9.3