Skip to content

Commit

Permalink
Add emojis to column titles
Browse files Browse the repository at this point in the history
  • Loading branch information
elkinaguas committed Oct 17, 2023
1 parent ede295a commit 1163606
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions clir/tools/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ def choose_command(commands: dict = {}):
def command_table(commands: dict = {}):
table = Table(show_lines=True, box=box.ROUNDED, style="#7D7C7C")

table.add_column("ID", style="cyan", no_wrap=True)
table.add_column("Command", style="cyan", no_wrap=True)
table.add_column("Description", style="magenta")
table.add_column("Tag", style="green")
table.add_column("ID 📇", style="cyan", no_wrap=True)
table.add_column("Command 💻", style="cyan", no_wrap=True)
table.add_column("Description 📕", style="magenta")
table.add_column("Tag 🏷️", style="green")

for indx, command in enumerate(commands):
desc_len = 50
Expand Down

0 comments on commit 1163606

Please sign in to comment.