We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cabacf commit 7d60842Copy full SHA for 7d60842
tests/test_end_to_end.py
@@ -21,7 +21,7 @@
21
22
def _normalize_html(html: str) -> str:
23
soup = bs4.BeautifulSoup(html, features="html.parser")
24
- html = soup.prettify()
+ html = soup.prettify() # type: ignore[assignment]
25
html = re.sub(r"\b(0x)[a-f0-9]+\b", r"\1...", html)
26
html = re.sub(r"^(Build Date UTC ?:).+", r"\1...", html, flags=re.MULTILINE)
27
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