fix typo bug in spice comments code

This commit is contained in:
Sam Crow 2023-07-10 13:20:20 -07:00
parent 513c7e9f71
commit 4e649aad6b
1 changed files with 2 additions and 2 deletions

View File

@ -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 = []