diff --git a/textile/objects/table.py b/textile/objects/table.py index fcecb06..ac1da76 100644 --- a/textile/objects/table.py +++ b/textile/objects/table.py @@ -181,7 +181,7 @@ def process(self): # tab between cols and a newline at the end xml_declaration = "\n" colgrp = colgrp.replace(xml_declaration, '') - return f'\t{colgrp.replace('><', '>\n\t<')}' + return f"\t{colgrp.replace('><', '>\n\t<')}" class Row(object):