From 866acf3cef6531480e143b848242364fff4811c8 Mon Sep 17 00:00:00 2001 From: Philipp Schmitt Date: Sat, 1 Feb 2025 18:26:15 +0100 Subject: [PATCH] strip emojis from section names --- tdc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdc.py b/tdc.py index 6f32096..2bb4341 100755 --- a/tdc.py +++ b/tdc.py @@ -496,7 +496,7 @@ async def list_sections(client, show_ids, project_name, output_json=False): row = [] if show_ids: row.append(str(s.id)) - row.append(s.name) + row.append(maybe_strip_emojis(s.name)) table.add_row(*row) console.print(table)