summaryrefslogtreecommitdiff
path: root/creole/shared/markup_table.py
diff options
context:
space:
mode:
Diffstat (limited to 'creole/shared/markup_table.py')
-rw-r--r--creole/shared/markup_table.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/creole/shared/markup_table.py b/creole/shared/markup_table.py
index 444aae9..54b4763 100644
--- a/creole/shared/markup_table.py
+++ b/creole/shared/markup_table.py
@@ -60,7 +60,7 @@ class MarkupTable:
if not self.auto_width:
lines = []
for row in self.rows:
- lines.append("|" + "|".join([cell for cell in row]) + "|")
+ lines.append("|" + "|".join(cell for cell in row) + "|")
else:
# preformat every table cell
cells, widths = self._get_preformat_info()
@@ -81,8 +81,8 @@ class MarkupTable:
# preformat every table cell
cells, widths = self._get_preformat_info()
- separator_line = f"+{'+'.join([('-' * width) for width in widths])}+"
- headline_separator = f"+{'+'.join([('=' * width) for width in widths])}+"
+ separator_line = f"+{'+'.join(('-' * width) for width in widths)}+"
+ headline_separator = f"+{'+'.join(('=' * width) for width in widths)}+"
lines = []
for no, row in enumerate(cells):