Fix code styling
authorJean THOMAS <git0@pub.jeanthomas.me>
Fri, 24 Jul 2020 12:40:26 +0000 (14:40 +0200)
committerJean THOMAS <git0@pub.jeanthomas.me>
Fri, 24 Jul 2020 12:40:26 +0000 (14:40 +0200)
gram/core/multiplexer.py

index 789a07b9d1413b2ca33ed38a09d86a7ef22d979b..fb77430021046ad8480b0052f86cc0e8a79667b3 100644 (file)
@@ -225,9 +225,7 @@ class _AntiStarvation(Elaboratable):
                     self.max_time.eq(0),
                 ]
             with m.Elif(time != 0):
-                m.d.sync += [
-                    time.eq(time-1)
-                ]
+                m.d.sync += time.eq(time-1)
                 with m.If(time == 1):
                     m.d.sync += self.max_time.eq(1)
                 with m.Else():