From 8c140d716b54d57aa5c54b90f38c8dcf6ef78a19 Mon Sep 17 00:00:00 2001 From: Jean THOMAS Date: Fri, 24 Jul 2020 14:40:26 +0200 Subject: [PATCH] Fix code styling --- gram/core/multiplexer.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gram/core/multiplexer.py b/gram/core/multiplexer.py index 789a07b..fb77430 100644 --- a/gram/core/multiplexer.py +++ b/gram/core/multiplexer.py @@ -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(): -- 2.30.2