fix table generate

This commit is contained in:
Sarah 2022-12-10 16:40:25 +00:00
parent e9a5b0ee51
commit d64621aa73

View File

@ -30,6 +30,6 @@ class MarkdownTable:
for row in self.rows:
table += "\n"
table += " | ".join(row)
table += " | ".join(map(str, row))
return table