Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
leo-gan committed Dec 10, 2024
1 parent f380292 commit d68d573
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/scripts/providers_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ def generate_index_page(items: list[str], num_columns: int = 5) -> str:
""",
]
# First part: Menu with links
menu_links = " | ".join(f"[{letter}](#{letter.lower()})" for letter, _ in sorted_groups)
menu_links = " | ".join(
f"[{letter}](#{letter.lower()})" for letter, _ in sorted_groups
)
content.append(menu_links + "\n\n")
content.append("\n---\n\n")

Expand Down

0 comments on commit d68d573

Please sign in to comment.