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

---
 tests/test_scripts/test_ptweens.py |   16 +++++++++++-----
 1 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/tests/test_scripts/test_ptweens.py b/tests/test_scripts/test_ptweens.py
index 4ad0152..a7fe6f6 100644
--- a/tests/test_scripts/test_ptweens.py
+++ b/tests/test_scripts/test_ptweens.py
@@ -1,9 +1,11 @@
 import unittest
 from . import dummy
 
+
 class TestPTweensCommand(unittest.TestCase):
     def _getTargetClass(self):
         from pyramid.scripts.ptweens import PTweensCommand
+
         return PTweensCommand
 
     def _makeOne(self):
@@ -31,9 +33,10 @@
         result = command.run()
         self.assertEqual(result, 0)
         self.assertEqual(
-           L[0],
-           '"pyramid.tweens" config value NOT set (implicitly ordered tweens '
-            'used)')
+            L[0],
+            '"pyramid.tweens" config value NOT set (implicitly ordered tweens '
+            'used)',
+        )
 
     def test_command_implicit_and_explicit_tweens(self):
         command = self._makeOne()
@@ -44,17 +47,20 @@
         result = command.run()
         self.assertEqual(result, 0)
         self.assertEqual(
-           L[0],
-           '"pyramid.tweens" config value set (explicitly ordered tweens used)')
+            L[0],
+            '"pyramid.tweens" config value set (explicitly ordered tweens used)',
+        )
 
     def test__get_tweens(self):
         command = self._makeOne()
         registry = dummy.DummyRegistry()
         self.assertEqual(command._get_tweens(registry), None)
 
+
 class Test_main(unittest.TestCase):
     def _callFUT(self, argv):
         from pyramid.scripts.ptweens import main
+
         return main(argv, quiet=True)
 
     def test_it(self):

--
Gitblit v1.9.3