reorder sram __init__() argument order for tests that rely on the order

This commit is contained in:
samuelkcrow
2022-08-10 12:07:09 -07:00
committed by Bugra Onal
parent 34ee709c69
commit ebe4393d66
+1 -1
View File
@@ -20,7 +20,7 @@ class sram():
results.
We can later add visualizer and other high-level functions as needed.
"""
def __init__(self, name, sram_config):
def __init__(self, sram_config, name):
self.name = name
self.config = sram_config