From 4e649aad6bc633e917001880235ed075ecaf1f7e Mon Sep 17 00:00:00 2001 From: Sam Crow Date: Mon, 10 Jul 2023 13:20:20 -0700 Subject: [PATCH] fix typo bug in spice comments code --- compiler/base/hierarchy_spice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/base/hierarchy_spice.py b/compiler/base/hierarchy_spice.py index da92c0fb..64dc0b2b 100644 --- a/compiler/base/hierarchy_spice.py +++ b/compiler/base/hierarchy_spice.py @@ -68,7 +68,7 @@ class spice(): self.trim_insts = set() # Keep track of any comments to add the the spice try: - self.commments + self.comments except AttributeError: self.comments = [] @@ -82,7 +82,7 @@ class spice(): """ Add a comment to the spice file """ try: - self.commments + self.comments except AttributeError: self.comments = []