Skip to content

Commit

Permalink
fix f-string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ikirudennis committed Aug 6, 2024
1 parent 063aaab commit 036f4ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion textile/objects/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def process(self):
# tab between cols and a newline at the end
xml_declaration = "<?xml version='1.0' encoding='UTF-8'?>\n"
colgrp = colgrp.replace(xml_declaration, '')
return f'\t{colgrp.replace('><', '>\n\t<')}'
return f"\t{colgrp.replace('><', '>\n\t<')}"


class Row(object):
Expand Down

0 comments on commit 036f4ba

Please sign in to comment.