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/settings.py |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/pyramid/settings.py b/src/pyramid/settings.py
index 8a498d5..af94338 100644
--- a/src/pyramid/settings.py
+++ b/src/pyramid/settings.py
@@ -3,6 +3,7 @@
 truthy = frozenset(('t', 'true', 'y', 'yes', 'on', '1'))
 falsey = frozenset(('f', 'false', 'n', 'no', 'off', '0'))
 
+
 def asbool(s):
     """ Return the boolean value ``True`` if the case-lowered value of string
     input ``s`` is a :term:`truthy string`. If ``s`` is already one of the
@@ -14,11 +15,13 @@
     s = str(s).strip()
     return s.lower() in truthy
 
+
 def aslist_cronly(value):
     if isinstance(value, string_types):
         value = filter(None, [x.strip() for x in value.splitlines()])
     return list(value)
 
+
 def aslist(value, flatten=True):
     """ Return a list of strings, separating the input based on newlines
     and, if flatten=True (the default), also split on spaces within

--
Gitblit v1.9.3