fixed area rounding

This commit is contained in:
Jesse Cirimelli-Low 2019-02-22 06:57:54 -08:00
parent b4f1d53a1b
commit 0cabee060d
1 changed files with 1 additions and 1 deletions

View File

@ -615,7 +615,7 @@ def parse_characterizer_csv(f, pages):
new_sheet.io_table.add_row(['NUM_R_PORTS', NUM_R_PORTS])
new_sheet.io_table.add_row(['NUM_W_PORTS', NUM_W_PORTS])
new_sheet.io_table.add_row(
['Area (&microm<sup>2</sup>)', AREA])
['Area (&microm<sup>2</sup>)', str(round(float(AREA)))])
class datasheet_gen():