Fix for the commit 10486af51a

- italic and bold must be bool
This commit is contained in:
Salvador E. Tropea 2021-11-18 12:18:39 -03:00
parent 4cbebb6622
commit 2a09151a18
1 changed files with 2 additions and 2 deletions

View File

@ -733,8 +733,8 @@ class SchematicField(object):
self.flags = '0001'
self.hjustify = 'C'
self.vjustify = 'C'
self.italic = 'N'
self.bold = 'N'
self.italic = False
self.bold = False
@staticmethod
def parse(line, f):