From d72691f6c2568d4234978b52ae93a26795071f07 Mon Sep 17 00:00:00 2001 From: mrg Date: Fri, 12 Jul 2019 11:14:47 -0700 Subject: [PATCH] Make mirror optional argument --- compiler/modules/dummy_array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/modules/dummy_array.py b/compiler/modules/dummy_array.py index 861e0fad..e175e732 100644 --- a/compiler/modules/dummy_array.py +++ b/compiler/modules/dummy_array.py @@ -15,7 +15,7 @@ class dummy_array(design.design): """ Generate a dummy row/column for the replica array. """ - def __init__(self, cols, rows, mirror, name): + def __init__(self, cols, rows, mirror=0, name=""): design.design.__init__(self, name) debug.info(1, "Creating {0} {1} x {2}".format(self.name, rows, cols)) self.add_comment("rows: {0} cols: {1}".format(rows, cols))