OpenRAM/compiler/datasheet/deliverables.py

14 lines
305 B
Python
Raw Normal View History

2018-10-12 01:03:05 +02:00
from flask_table import *
class deliverables(Table):
typ = Col('Type')
description = Col('Description')
link = Col('Link')
class deliverables_item(object):
def __init__(self, typ, description,link):
self.typ = typ
self.description = description
self.link = link