class Input: | |
def __init__(self, title, abstract=None, authors=None): | |
self.title = title | |
self.abstract = abstract if abstract is not None else '' | |
self.authors = authors if authors is not None else '' | |
class Input: | |
def __init__(self, title, abstract=None, authors=None): | |
self.title = title | |
self.abstract = abstract if abstract is not None else '' | |
self.authors = authors if authors is not None else '' | |