fix: missing colon syntax error

This commit is contained in:
wuhanstudio 2021-09-07 11:18:37 +01:00
parent a6f9ac58bb
commit 5d9880888c
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class SimDDROutputImpl(Module):
i_clk = clk i_clk = clk
) )
class SimDDROutput class SimDDROutput:
@staticmethod @staticmethod
def lower(dr): def lower(dr):
return SimDDROutputImpl(dr.o, dr.i1, dr.i2, dr.clk) return SimDDROutputImpl(dr.o, dr.i1, dr.i2, dr.clk)