autoformat all code
[nmutil.git] / src / nmutil / test / test_prefix_sum.py
index 48598b88697b286e2a6f879f0e185aadbb58dc6e..2b88407216ccad3fc99a7d633331a30a3d3f562f 100644 (file)
@@ -70,7 +70,7 @@ class TestPrefixSum(FHDLTestCase):
     def tst_pop_count_int(self, width):
         assert isinstance(width, int)
         for v in range(1 << width):
-            expected = bin(v).count("1") # converts to a string, counts 1s
+            expected = bin(v).count("1")  # converts to a string, counts 1s
             with self.subTest(v=v, expected=expected):
                 self.assertEqual(expected, pop_count(v, width=width))