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

diff --git a/src/pyramid/scripts/common.py b/src/pyramid/scripts/common.py
index f4b8027..9181eea 100644
--- a/src/pyramid/scripts/common.py
+++ b/src/pyramid/scripts/common.py
@@ -1,5 +1,6 @@
 import plaster
 
+
 def parse_vars(args):
     """
     Given variables like ``['a=b', 'c=d']`` turns it into ``{'a':
@@ -8,13 +9,12 @@
     result = {}
     for arg in args:
         if '=' not in arg:
-            raise ValueError(
-                'Variable assignment %r invalid (no "=")'
-                % arg)
+            raise ValueError('Variable assignment %r invalid (no "=")' % arg)
         name, value = arg.split('=', 1)
         result[name] = value
     return result
 
+
 def get_config_loader(config_uri):
     """
     Find a ``plaster.ILoader`` object supporting the "wsgi" protocol.

--
Gitblit v1.9.3