Valeriy Sinyukov
commited on
Commit
·
8670c25
1
Parent(s):
fe3279c
Fix abstract bug
Browse files
common.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
class Input:
|
| 2 |
def __init__(self, title, abstract=None, authors=None):
|
| 3 |
self.title = title
|
| 4 |
-
self.abstract = abstract if abstract is not None else
|
| 5 |
self.authors = authors if authors is not None else ''
|
|
|
|
| 1 |
class Input:
|
| 2 |
def __init__(self, title, abstract=None, authors=None):
|
| 3 |
self.title = title
|
| 4 |
+
self.abstract = abstract if abstract is not None else ''
|
| 5 |
self.authors = authors if authors is not None else ''
|