Remove tab in lef file.

This commit is contained in:
Matt Guthaus 2017-12-19 09:14:59 -08:00
parent 9a4b2b4341
commit 9059a15ceb
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class lef:
self.lef.write("SITE MacroSite\n")
self.indent += " "
self.lef.write("{0}CLASS Core ;\n".format(self.indent))
self.lef.write("{0}SIZE {1} by {2} ;\n".format(self.indent,
self.lef.write("{0}SIZE {1} by {2} ;\n".format(self.indent,
self.lef_units*self.width,
self.lef_units*self.height))
self.indent = self.indent[:-3]