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

diff --git a/src/pyramid/decorator.py b/src/pyramid/decorator.py
index 065a3fe..89cbb0f 100644
--- a/src/pyramid/decorator.py
+++ b/src/pyramid/decorator.py
@@ -32,6 +32,7 @@
         >>> f.jammy
         2
     """
+
     def __init__(self, wrapped):
         self.wrapped = wrapped
         update_wrapper(self, wrapped)
@@ -42,4 +43,3 @@
         val = self.wrapped(inst)
         setattr(inst, self.wrapped.__name__, val)
         return val
-

--
Gitblit v1.9.3