Skip to content

Commit

Permalink
Merge pull request #1036 from samjwu/pythonlinting
Browse files Browse the repository at this point in the history
style(theme.py): Apply black formatter
  • Loading branch information
samjwu authored Nov 26, 2024
2 parents 11a0d32 + f000c4c commit d2d4139
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/rocm_docs/theme.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,16 @@ def _add_custom_context(
header_release_candidate_version = _get_version_from_url(
"https://raw.githubusercontent.com/ROCm/rocm-docs-core/data/release_candidate.txt"
)
context[
"header_release_candidate_version"
] = header_release_candidate_version
context["header_release_candidate_version"] = (
header_release_candidate_version
)

google_site_verification_content = _get_version_from_url(
"https://raw.githubusercontent.com/ROCm/rocm-docs-core/data/google_site_verification.txt"
)
context[
"google_site_verification_content"
] = google_site_verification_content
context["google_site_verification_content"] = (
google_site_verification_content
)


def _update_repo_opts(srcdir: str, theme_opts: dict[str, Any]) -> None:
Expand Down

0 comments on commit d2d4139

Please sign in to comment.