Valeriy Sinyukov
Add Input class, which represents input to a model
f390658
raw
history blame
157 Bytes
class Input:
def __init__(self, title, abstract=None):
self.title = title
self.abstract = abstract if abstract is not None else abstract