davda54
commited on
Commit
·
4e638d5
1
Parent(s):
ba91ea6
fix
Browse files
app.py
CHANGED
@@ -91,7 +91,7 @@ def render_table(forms, lemmas, upos, xpos, feats, metadata, edges, edge_labels)
|
|
91 |
["<b>upos</b> "] + upos,
|
92 |
["<b>xpos</b> "] + xpos,
|
93 |
["<b>feats</b> "] + feats[0],
|
94 |
-
*([""] + row for row in feats[1:])
|
95 |
]
|
96 |
|
97 |
table = prettytable.PrettyTable()
|
|
|
91 |
["<b>upos</b> "] + upos,
|
92 |
["<b>xpos</b> "] + xpos,
|
93 |
["<b>feats</b> "] + feats[0],
|
94 |
+
*([""] + list(row) for row in feats[1:])
|
95 |
]
|
96 |
|
97 |
table = prettytable.PrettyTable()
|