From 036f4ba34f6466b12d166735932db5ce00f53d37 Mon Sep 17 00:00:00 2001 From: Dennis Burke Date: Tue, 6 Aug 2024 15:25:01 -0400 Subject: [PATCH] fix f-string formatting --- textile/objects/table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):