Skip to content

Commit

Permalink
fix ruff complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
svlandeg committed Apr 5, 2024
1 parent d1e0e33 commit fe27cf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typer/rich_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ def rich_format_help(

# Identify the longest command name in all panels
max_cmd_len = 0
for panel_name, commands in panel_to_commands.items():
for _, commands in panel_to_commands.items():
for command in commands:
max_cmd_len = max(max_cmd_len, len(command.name or ""))

Expand Down

0 comments on commit fe27cf7

Please sign in to comment.