Skip to content

Commit 4bb0a4d

Browse files
committed
Fix formating
1 parent 924890e commit 4bb0a4d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/extension/_check.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ def check_link_targets(root: Path) -> int:
4343
total += 1
4444
return total
4545

46+
4647
def check_reference_targets_exist(root: Path):
4748
site_docs = {
4849
p: BeautifulSoup(p.read_text("utf-8"), "html.parser")
@@ -61,6 +62,7 @@ def check_reference_targets_exist(root: Path):
6162
f" link for `{link.string}` in {doc.relative_to(root)!s}!"
6263
)
6364

65+
6466
def gather_ids(soup: BeautifulSoup) -> set:
6567
"""Gather all HTML IDs from a given page."""
6668
return {tag["id"] for tag in soup.find_all(id=True)}

0 commit comments

Comments
 (0)