Skip to content

Commit

Permalink
Fix section display
Browse files Browse the repository at this point in the history
  • Loading branch information
pschmitt committed Feb 1, 2025
1 parent e34c2ac commit 8e4c823
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(section_str(s))
row.append(s.name)
table.add_row(*row)

console.print(table)
Expand Down

0 comments on commit 8e4c823

Please sign in to comment.