From ef710eae7aab2dcba4a415f8bd0ce52d31971580 Mon Sep 17 00:00:00 2001 From: samuelkcrow Date: Fri, 4 Mar 2022 13:53:20 -0800 Subject: [PATCH] reorder sram __init__() argument order for tests that rely on the order --- compiler/sram/sram.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/sram/sram.py b/compiler/sram/sram.py index afa8cd58..627f58bd 100644 --- a/compiler/sram/sram.py +++ b/compiler/sram/sram.py @@ -21,7 +21,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