format code
[nmutil.git] / src / nmutil / clz.py
index 2fda8c2b578a5a335cc33bcdca5fac3083c4d483..39e832941be146533479552cd59aede32db18da1 100644 (file)
@@ -10,6 +10,7 @@ import math
 
 """
 
+
 class CLZ(Elaboratable):
     def __init__(self, width):
         self.width = width
@@ -86,4 +87,3 @@ class CLZ(Elaboratable):
         comb += self.lz.eq(pairs[0][0])
 
         return m
-