moved DRC and LVS error reports to datasheet.info from datasheet.py

This commit is contained in:
Jesse Cirimelli-Low
2019-01-02 10:14:45 -08:00
parent 4a5c18b6cc
commit cc27736a45
5 changed files with 49 additions and 25 deletions
@@ -1,7 +1,19 @@
class deliverable:
def __init__(self, name, file_type, path, size):
self.name = name
self.file_type = file_type
self.path = path
self.size = size
from flask_table import *
class deliverables(Table):
"""
Set up delivarables table columns and title information
"""
typ = Col('Type')
description = Col('Description')
link = Col('Link')
class deliverables_item(object):
"""
Define deliverables table row elemenent information
"""
def __init__(self, typ, description,link):
self.typ = typ
self.description = description
self.link = link
@@ -14,6 +14,3 @@ class filelist:
out_file.write('{}/{}\n'.format(root,file))
#print('{}/{}'.format(root,file))