Change settings in flake8 and black.
[python_utils.git] / tests / decorator_utils_test.py
index 195dd636a6a2238ad5df9e23d6caf7f841a0353d..2cc2b5f71d14d7295e4610ffccf16f543c766478 100755 (executable)
@@ -3,16 +3,13 @@
 import unittest
 
 import decorator_utils as du
-
 import unittest_utils as uu
 
 
 class TestDecorators(unittest.TestCase):
-
     def test_singleton(self):
-
         @du.singleton
-        class FooBar():
+        class FooBar:
             pass
 
         x = FooBar()