Skip to content

Commit 53507b5

Browse files
committed
ci: Remove unused type ignore comment
1 parent 6004ccf commit 53507b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_end_to_end.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
def _normalize_html(html: str) -> str:
2424
soup = bs4.BeautifulSoup(html, features="html.parser")
25-
html = soup.prettify() # type: ignore[assignment]
25+
html = soup.prettify()
2626
html = re.sub(r"\b(0x)[a-f0-9]+\b", r"\1...", html)
2727
html = re.sub(r"^(Build Date UTC ?:).+", r"\1...", html, flags=re.MULTILINE)
2828
html = re.sub(r"\b[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}\b", r"...", html)

0 commit comments

Comments
 (0)