Change inheritance inits to use super

This commit is contained in:
mrg
2020-08-06 11:33:26 -07:00
parent 9b8ef5ef57
commit 30976df48f
52 changed files with 61 additions and 61 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ class delay(simulation):
"""
def __init__(self, sram, spfile, corner):
simulation.__init__(self, sram, spfile, corner)
super().__init__(sram, spfile, corner)
self.targ_read_ports = []
self.targ_write_ports = []