Skip to content

Commit

Permalink
strip emojis from section names
Browse files Browse the repository at this point in the history
  • Loading branch information
pschmitt committed Feb 1, 2025
1 parent 8e4c823 commit 866acf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tdc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 866acf3

Please sign in to comment.